PHPDaemon\WebSocket\Route::onSleep PHP Method

onSleep() public method

Called when the request starts sleep
public onSleep ( ) : void
return void
    public function onSleep()
    {
        Daemon::$context = null;
        $this->running = false;
        unset($_SESSION, $_GET, $_POST, $_COOKIE);
        Daemon::$process->setState(Daemon::WSTATE_IDLE);
    }