class CronQueueTestRequeueException

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

Plugin annotation


@QueueWorker(
  id = "cron_queue_test_requeue_exception",
  title = @Translation("RequeueException test"),
  cron = {"time" = 60}
)

Hierarchy

Expanded class hierarchy of CronQueueTestRequeueException

File

core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestRequeueException.php, line 15

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker
View source
class CronQueueTestRequeueException extends QueueWorkerBase {
  
  /**
   * {@inheritdoc}
   */
  public function processItem($data) {
    $state = \Drupal::state();
    if (!$state->get('cron_queue_test_requeue_exception')) {
      $state->set('cron_queue_test_requeue_exception', 1);
      throw new RequeueException('I am not done yet!');
    }
    else {
      $state->set('cron_queue_test_requeue_exception', 2);
    }
  }

}

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