You are here

public function MessageCheckAndDeleteWorker::__construct in Message 8

Constructs a new MessageCheckAndDeleteWorker object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

array $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/MessageCheckAndDeleteWorker.php, line 47

Class

MessageCheckAndDeleteWorker
Deletes messages that no longer have references within multivalued fields.

Namespace

Drupal\message\Plugin\QueueWorker

Code

public function __construct(array $configuration, $plugin_id, array $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->messageStorage = $entity_type_manager
    ->getStorage('message');
}