protected function MessageQueueBase::createQueueItem in Open Social 8.2
Same name and namespace in other branches
- 8.9 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.3 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.4 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.5 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.6 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.7 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 8.8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 10.3.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 10.0.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 10.1.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php \Drupal\activity_logger\Plugin\QueueWorker\MessageQueueBase::createQueueItem()
- 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\QueueWorkerCode
protected function createQueueItem($queue_name, $data) {
$queue = \Drupal::queue($queue_name);
$queue
->createItem($data);
}