You are here

interface FieldEncryptQueueWorkerInterface in Field Encryption 3.0.x

An interface for queue workers processed by ProcessQueueForm.

Hierarchy

Expanded class hierarchy of FieldEncryptQueueWorkerInterface

All classes that implement FieldEncryptQueueWorkerInterface

See also

\Drupal\field_encrypt\Form\ProcessQueueForm

File

src/Plugin/QueueWorker/FieldEncryptQueueWorkerInterface.php, line 12

Namespace

Drupal\field_encrypt\Plugin\QueueWorker
View source
interface FieldEncryptQueueWorkerInterface extends QueueWorkerInterface {

  /**
   * Generates a batch message for an item.
   *
   * @param array $data
   *   The data that to generate the message.
   *
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   Translatable markup
   */
  public function batchMessage(array $data);

}

Members

Namesort descending Modifiers Type Description Overrides
FieldEncryptQueueWorkerInterface::batchMessage public function Generates a batch message for an item. 1
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 4
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
QueueWorkerInterface::processItem public function Works on a single queue item. 8