You are here

function aggregator_cron_queue_info in Drupal 7

Implements hook_cron_queue_info().

File

modules/aggregator/aggregator.module, line 337
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

function aggregator_cron_queue_info() {
  $queues['aggregator_feeds'] = array(
    'worker callback' => 'aggregator_refresh',
    'time' => 60,
  );
  return $queues;
}