You are here

protected function MessageQueueBase::createQueueItem in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  2. 8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  3. 8.2 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  4. 8.3 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  5. 8.4 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  6. 8.5 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  7. 8.7 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  8. 8.8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  9. 10.3.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  10. 10.0.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  11. 10.1.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
  12. 10.2.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()

Simple reporter log and display information about the queue.

Parameters

string $queue_name: The queue name.

object $data: The $data which should be stored in the queue item.

File

modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php, line 20

Class

MessageQueueBase
Provides base functionality for the ReportWorkers.

Namespace

Drupal\activity_logger\Plugin\QueueWorker

Code

protected function createQueueItem($queue_name, $data) {
  $queue = \Drupal::queue($queue_name);
  $queue
    ->createItem($data);
}