You are here

public function ContentHubImportQueue::__construct in Acquia Content Hub 8.2

File

modules/acquia_contenthub_subscriber/src/ContentHubImportQueue.php, line 37

Class

ContentHubImportQueue
Implements an Import Queue for entities.

Namespace

Drupal\acquia_contenthub_subscriber

Code

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