CronQueueTestMemoryDelayException.php

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

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker

File

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

View source
<?php

declare (strict_types=1);
namespace Drupal\cron_queue_test\Plugin\QueueWorker;

use Drupal\Core\Queue\Attribute\QueueWorker;
use Drupal\Core\Queue\DelayedRequeueException;
use Drupal\Core\Queue\QueueWorkerBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * A queue worker for testing cron exception handling.
 */
class CronQueueTestMemoryDelayException extends QueueWorkerBase {
  
  /**
   * {@inheritdoc}
   */
  public function processItem($data) {
    // Set the delay to something larger than the original lease.
    $cron_time = $this->pluginDefinition['cron']['time'];
    throw new DelayedRequeueException($cron_time + 100);
  }

}

Classes

Title Deprecated Summary
CronQueueTestMemoryDelayException 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.