You are here

function background_process_invoke_dispatcher in Background Process 7.2

1 call to background_process_invoke_dispatcher()
BackgroundProcess::dispatch in ./background_process.inc
Launch the process

File

./background_process.module, line 203

Code

function background_process_invoke_dispatcher($dispatcher, $process) {
  $callback = background_process_prepare_dispatcher_callback($dispatcher);
  return call_user_func($callback, $process);
}