You are here

function background_process_ass_service_group in Background Process 8

Same name and namespace in other branches
  1. 6 background_process_ass/background_process_ass.module \background_process_ass_service_group()
  2. 7.2 background_process_ass/background_process_ass.module \background_process_ass_service_group()
  3. 7 background_process_ass/background_process_ass.module \background_process_ass_service_group()

Implements hook_service_group().

File

background_process_ass/background_process_ass.module, line 57
Implements Background Process Ass Module. @todo Implement admin interface. @todo Fix runtime check of running process.

Code

function background_process_ass_service_group() {
  $info = [];
  $info['methods']['background_process_ass_service_group_idle'] = t('Idle workers');
  return $info;
}