You are here

public function JobQueueWorker::__construct in Apigee Edge 8

Constructs a \Drupal\Component\Plugin\PluginBase object.

Parameters

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

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Overrides PluginBase::__construct

File

src/Plugin/QueueWorker/JobQueueWorker.php, line 56

Class

JobQueueWorker
Worker class for processing a queue item.

Namespace

Drupal\apigee_edge\Plugin\QueueWorker

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, JobExecutorInterface $executor, QueueFactory $queue_factory) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->executor = $executor;
  $this->queue = $queue_factory
    ->get('apigee_edge_job');
}