function CronQueueTestBrokenQueue::processItem

Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestBrokenQueue.php \Drupal\cron_queue_test\Plugin\QueueWorker\CronQueueTestBrokenQueue::processItem()

Works on a single queue item.

Parameters

mixed $data: The data that was passed to \Drupal\Core\Queue\QueueInterface::createItem() when the item was queued.

Overrides QueueWorkerInterface::processItem

File

core/modules/system/tests/modules/cron_queue_test/src/Plugin/QueueWorker/CronQueueTestBrokenQueue.php, line 20

Class

CronQueueTestBrokenQueue
Plugin annotation @QueueWorker( id = "cron_queue_test_broken_queue", title = @Translation("Broken queue test"), cron = {"time" = 60} )

Namespace

Drupal\cron_queue_test\Plugin\QueueWorker

Code

public function processItem($data) {
  if ($data == 'crash') {
    throw new SuspendQueueException('The queue is broken.');
  }
  // Do nothing otherwise.
}

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