Network\Socket::reconnect PHP 메소드

reconnect() 공개 메소드

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