CronQueueTestDatabaseDelayException.php

Same filename and directory in other branches
  1. 10 core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestDatabaseDelayException.php
  2. 11.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestDatabaseDelayException.php

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker

File

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

View source
<?php

namespace Drupal\cron_queue_test\Plugin\QueueWorker;

use Drupal\Core\Queue\DelayedRequeueException;
use Drupal\Core\Queue\QueueWorkerBase;

/**
 * A queue worker for testing cron exception handling.
 *
 * @QueueWorker(
 *   id = "cron_queue_test_database_delay_exception",
 *   title = @Translation("Database delay exception test"),
 *   cron = {"time" = 1}
 * )
 */
class CronQueueTestDatabaseDelayException extends QueueWorkerBase {
    const DELAY_INTERVAL = 100;
    
    /**
     * {@inheritdoc}
     */
    public function processItem($data) {
        throw new DelayedRequeueException(self::DELAY_INTERVAL);
    }

}

Classes

Title Deprecated Summary
CronQueueTestDatabaseDelayException A queue worker for testing cron exception handling.

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