You are here

ScheduledTaskNotifyInterface.php in Webform Scheduled Tasks 8.2

File

src/Plugin/WebformScheduledTasks/ScheduledTaskNotifyInterface.php
View source
<?php

namespace Drupal\webform_scheduled_tasks\Plugin\WebformScheduledTasks;


/**
 * An interface for scheduled task plugins that are notified.
 */
interface ScheduledTaskNotifyInterface {

  /**
   * Called when a task is successful.
   */
  public function onSuccess();

  /**
   * Called when a task fails.
   */
  public function onFailure();

}

Interfaces

Namesort descending Description
ScheduledTaskNotifyInterface An interface for scheduled task plugins that are notified.