function aggregator_queue_info

Implements hook_queue_info().

File

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

Code

function aggregator_queue_info() {
  $queues['aggregator_feeds'] = array(
    'title' => t('Aggregator refresh'),
    'worker callback' => 'aggregator_refresh',
    'cron' => array(
      'time' => 60,
    ),
  );
  return $queues;
}