MessageQueueBase.php in Open Social 8.3
Same filename and directory in other branches
- 8.9 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.2 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.4 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.5 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.6 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.7 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 8.8 modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 10.3.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 10.0.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 10.1.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
- 10.2.x modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.php
File
modules/custom/activity_logger/src/Plugin/QueueWorker/MessageQueueBase.phpView source
<?php
namespace Drupal\activity_logger\Plugin\QueueWorker;
use Drupal\Core\Queue\QueueWorkerBase;
/**
* Provides base functionality for the ReportWorkers.
*/
abstract class MessageQueueBase extends QueueWorkerBase {
/**
* Simple reporter log and display information about the queue.
*
* @param string $queue_name
* The queue name.
* @param object $data
* The $data which should be stored in the queue item.
*/
protected function createQueueItem($queue_name, $data) {
$queue = \Drupal::queue($queue_name);
$queue
->createItem($data);
}
}
Classes
Name | Description |
---|---|
MessageQueueBase | Provides base functionality for the ReportWorkers. |