You are here

function feeds_queue_info in Feeds 8.2

Implements hook_queue_info().

Related topics

File

./feeds.module, line 98
Feeds - basic API functions and hook implementations.

Code

function feeds_queue_info() {
  return array(
    'feeds_source_import' => array(
      'title' => t('Feeds source import'),
      'worker callback' => 'feeds_source_import',
      'cron' => array(
        'time' => 60,
      ),
    ),
    'feeds_source_clear' => array(
      'title' => t('Feeds source clear'),
      'worker callback' => 'feeds_source_clear',
      'cron' => array(
        'time' => 60,
      ),
    ),
    'feeds_source_expire' => array(
      'title' => t('Feeds source expire'),
      'worker callback' => 'feeds_source_expire',
      'cron' => array(
        'time' => 60,
      ),
    ),
    'feeds_push_unsubscribe' => array(
      'title' => t('Feeds push unsubscribe'),
      'worker callback' => 'feeds_push_unsubscribe',
      'cron' => array(
        'time' => 60,
      ),
    ),
  );
}