Author: Vasily Zorin (maintainer@daemon.io)
Inheritance: extends AppInstance
Example #1
0
 /**
  * Called when application instance is going to shutdown.
  * @return boolean Ready to shutdown?
  */
 public function onShutdown($graceful = false)
 {
     if ($this->pool) {
         return $this->pool->onShutdown($graceful);
     }
     return true;
 }