You are here

private static function BackgroundProcess::defaultOptions in Background Process 7.2

4 calls to BackgroundProcess::defaultOptions()
BackgroundProcess::create in ./background_process.inc
Instantiate a new BackgroundProcess object with data
BackgroundProcess::setOption in ./background_process.inc
Set callback options
BackgroundProcess::setOptions in ./background_process.inc
Set callback options
BackgroundProcess::__construct in ./background_process.inc
Constructor. Will generate a "unique" handle for the process if none is specified.

File

./background_process.inc, line 921
External API short overview

Class

BackgroundProcess
@file

Code

private static function defaultOptions() {
  return array(
    'keepalive_counter' => 0,
    'store_result' => TRUE,
    'detach' => FALSE,
    'shutdown_callbacks' => array(),
    'dispatcher' => 'http',
  );
}