PHPDaemon\Network\Client::touchPending PHP Method

touchPending() public method

Touch pending "requests for connection"
public touchPending ( string $url ) : void
$url string URL
return void
    public function touchPending($url)
    {
        while (isset($this->pending[$url]) && !$this->pending[$url]->isEmpty()) {
            if (true === $this->getConnection($url, $this->pending[$url]->dequeue())) {
                return;
            }
        }
    }