You are here

abstract class ActivityWorkerBase in Open Social 8.6

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

Provides base functionality for the ReportWorkers.

Hierarchy

Expanded class hierarchy of ActivityWorkerBase

File

modules/custom/activity_creator/src/Plugin/QueueWorker/ActivityWorkerBase.php, line 11

Namespace

Drupal\activity_creator\Plugin\QueueWorker
View source
abstract class ActivityWorkerBase extends QueueWorkerBase {
  use StringTranslationTrait;

  /**
   * 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);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityWorkerBase::createQueueItem protected function Simple reporter log and display information about the queue.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. 92
QueueWorkerInterface::processItem public function Works on a single queue item. 6
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.