You are here

public function BackgroundProcess::detach in Background Process 7.2

Use blocking style request, and instruct the subrequests to detach asap.

@todo Bad naming?

File

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

Class

BackgroundProcess
@file

Code

public function detach($detach = TRUE) {
  $this
    ->logDebug(__FUNCTION__);
  $this->options['detach'] = TRUE;
  $this
    ->setOptions($this->options);
  return $this;
}