You are here

function insight_cron_queue_info in Insight 7

Implements hook_cron_queue_info().

File

./insight.module, line 842

Code

function insight_cron_queue_info() {
  $queues['insight_autoanalyze'] = array(
    'worker callback' => 'insight_contentanalysis_autoanalyze_batch',
    'time' => 600,
  );
  return $queues;
}