コード例 #1
0
ファイル: HttpClient.java プロジェクト: hansd/vert.x
 /**
  * Attempt to connect an HTML5 websocket to the specified URI
  *
  * <p>This version of the method defaults to the Hybi-10 version of the websockets protocol The
  * connect is done asynchronously and {@code wsConnect} is called back with the result
  */
 public void connectWebsocket(final String uri, final Handler<WebSocket> wsConnect) {
   connectWebsocket(uri, WebSocketVersion.HYBI_17, wsConnect);
 }