class CronQueueTestDatabaseDelayException

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

A queue worker for testing cron exception handling.

Hierarchy

Expanded class hierarchy of CronQueueTestDatabaseDelayException

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

File

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

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker
View source
class CronQueueTestDatabaseDelayException extends QueueWorkerBase {
    const DELAY_INTERVAL = 100;
    
    /**
     * {@inheritdoc}
     */
    public function processItem($data) {
        throw new DelayedRequeueException(self::DELAY_INTERVAL);
    }

}

Members


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