io.smallrye.mutiny.Uni<WebSocket> | 
HttpClient.webSocket(int port,
         String host,
         String requestURI) | 
 Connect a WebSocket to the specified port, host and relative request URI 
 | 
io.smallrye.mutiny.Uni<WebSocket> | 
HttpClient.webSocket(io.vertx.core.http.WebSocketConnectOptions options) | 
 Connect a WebSocket with the specified options. 
 | 
io.smallrye.mutiny.Uni<WebSocket> | 
HttpClient.webSocket(String requestURI) | 
 Connect a WebSocket at the relative request URI using the default host and port 
 | 
io.smallrye.mutiny.Uni<WebSocket> | 
HttpClient.webSocket(String host,
         String requestURI) | 
 Connect a WebSocket to the host and relative request URI and default port 
 | 
io.smallrye.mutiny.Uni<WebSocket> | 
HttpClient.webSocketAbs(String url,
            MultiMap headers,
            io.vertx.core.http.WebsocketVersion version,
            List<String> subProtocols) | 
 Connect a WebSocket with the specified absolute url, with the specified headers, using
 the specified version of WebSockets, and the specified WebSocket sub protocols. 
 |