PHPDaemon\Network\ClientConnection::onResponse PHP Method

onResponse() public method

Push callback to onReponse stack
public onResponse ( callable $cb ) : void
$cb callable Callback
return void
    public function onResponse($cb)
    {
        if ($cb === null && !$this->noSAF) {
            return;
        }
        $this->onResponse->push($cb);
        $this->checkFree();
    }