PHPDaemon\Network\ClientConnection::checkFree PHP Method

checkFree() public method

Set connection free/busy according to onResponse emptiness and ->finished
public checkFree ( ) : void
return void
    public function checkFree()
    {
        $this->setFree(!$this->finished && !$this->acquired && (!$this->onResponse || $this->onResponse->count() < $this->maxQueue));
    }