protected function MessageQueueBase::createQueueItem in Open Social 10.2.x
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.2 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()
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.
1 call to MessageQueueBase::createQueueItem()
- MessageQueueCreator::processItem in modules/
custom/ activity_logger/ src/ Plugin/ QueueWorker/ MessageQueueCreator.php - Works on a single queue item.
File
- modules/
custom/ activity_logger/ src/ Plugin/ QueueWorker/ MessageQueueBase.php, line 46
Class
- MessageQueueBase
- Provides base functionality for the ReportWorkers.
Namespace
Drupal\activity_logger\Plugin\QueueWorkerCode
protected function createQueueItem($queue_name, $data) {
$queue = $this->queue
->get($queue_name);
$queue
->createItem($data);
}