Network\Socket::reconnect PHP Method

reconnect() public method

It will attempt to close before reconnecting.
public reconnect ( ) : void
return void
    public function reconnect()
    {
        $this->_connection->disconnect();
        $this->_connection = null;
        $this->_connect();
    }