private function BackgroundProcess::flush in Background Process 7.2
Flush output buffer.
1 call to BackgroundProcess::flush()
- BackgroundProcess::execute in ./
background_process.inc - Execute the background process callback function.
File
- ./
background_process.inc, line 977 - External API short overview
Class
- BackgroundProcess
- @file
Code
private function flush() {
header("Connection: close");
ob_flush();
flush();
return $this;
}