Same name and namespace in other branches
  1. 8.9.x core/core.api.php \hook_queue_info_alter()
  2. 9 core/core.api.php \hook_queue_info_alter()

Alter cron queue information before cron runs.

Called by \Drupal\Core\Cron to allow modules to alter cron queue settings before any jobs are processed.

Parameters

array $queues: An array of cron queue information.

See also

\Drupal\Core\Queue\QueueWorkerInterface

\Drupal\Core\Annotation\QueueWorker

\Drupal\Core\Cron

Related topics

1 invocation of hook_queue_info_alter()
QueueWorkerManager::__construct in core/lib/Drupal/Core/Queue/QueueWorkerManager.php
Constructs a QueueWorkerManager object.

File

core/core.api.php, line 1984
Documentation landing page and topics, plus core library hooks.

Code

function hook_queue_info_alter(&$queues) {

  // This site has many feeds so let's spend 90 seconds on each cron run
  // updating feeds instead of the default 60.
  $queues['my_module_feeds']['cron']['time'] = 90;
}