class CronQueueTestDeriverQueue

Same name and namespace in other branches
  1. 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestDeriverQueue.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestDeriverQueue

A queue worker for testing derivatives.

Hierarchy

Expanded class hierarchy of CronQueueTestDeriverQueue

1 file declares its use of CronQueueTestDeriverQueue
CronQueueTest.php in core/modules/system/tests/src/Kernel/System/CronQueueTest.php

File

core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestDeriverQueue.php, line 13

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker
View source
class CronQueueTestDeriverQueue extends QueueWorkerBase {
    
    /**
     * The plugin ID.
     */
    public const PLUGIN_ID = 'cron_queue_test_deriver';
    
    /**
     * {@inheritdoc}
     */
    public function processItem($data) {
        $state = \Drupal::state();
        $processed = $state->get(self::PLUGIN_ID, 0);
        $state->set(self::PLUGIN_ID, ++$processed);
    }

}

Members

Title Sort descending Modifiers Object type Summary
CronQueueTestDeriverQueue::PLUGIN_ID public constant The plugin ID.
CronQueueTestDeriverQueue::processItem public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.