You are here

function background_process_service_group in Background Process 7.2

Same name and namespace in other branches
  1. 8 background_process.module \background_process_service_group()
  2. 6 background_process.module \background_process_service_group()
  3. 7 background_process.module \background_process_service_group()

Implements hook_service_group().

Default load balancing using pseudo round-robin.

File

./background_process.module, line 436

Code

function background_process_service_group() {
  $info = array();
  $info['methods']['background_process_service_group_round_robin'] = t('Pseudo round-robin');
  $info['methods']['background_process_service_group_random'] = t('Random');
  $info['methods']['background_process_service_group_idle'] = t('Idle');
  return $info;
}