You are here

public function ContentHubExportQueue::__construct in Acquia Content Hub 8.2

File

modules/acquia_contenthub_publisher/src/ContentHubExportQueue.php, line 44

Class

ContentHubExportQueue
Implements an Export Queue for Content Hub.

Namespace

Drupal\acquia_contenthub_publisher

Code

public function __construct(QueueFactory $queue_factory, QueueWorkerManager $queue_manager, MessengerInterface $messenger) {
  $this->queue = $queue_factory
    ->get('acquia_contenthub_publish_export');
  $this->queueManager = $queue_manager;
  $this->messenger = $messenger;
}