List of usage examples for io.vertx.core.http HttpClient webSocket
void webSocket(WebSocketConnectOptions options, Handler<AsyncResult<WebSocket>> handler);
From source file:examples.HTTPExamples.java
License:Open Source License
public void example54(HttpClient client) { client.websocket("/some-uri", websocket -> { System.out.println("Connected!"); });/*from w w w . ja v a 2 s. c o m*/ }