Uses of Class
io.vertx.reactivex.core.http.WebSocket
-
Packages that use WebSocket Package Description io.vertx.reactivex.core.http -
-
Uses of WebSocket in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.core.http with type parameters of type WebSocket Modifier and Type Field Description static TypeArg<WebSocket>WebSocket. __TYPE_ARGMethods in io.vertx.reactivex.core.http that return types with arguments of type WebSocket Modifier and Type Method Description io.reactivex.Single<WebSocket>HttpClient. rxWebSocket(int port, String host, String requestURI)Connect a WebSocket to the specified port, host and relative request URIio.reactivex.Single<WebSocket>HttpClient. rxWebSocket(WebSocketConnectOptions options)Connect a WebSocket with the specified options.io.reactivex.Single<WebSocket>HttpClient. rxWebSocket(String requestURI)Connect a WebSocket at the relative request URI using the default host and portio.reactivex.Single<WebSocket>HttpClient. rxWebSocket(String host, String requestURI)Connect a WebSocket to the host and relative request URI and default portio.reactivex.Single<WebSocket>HttpClient. rxWebSocketAbs(String url, MultiMap headers, 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.Method parameters in io.vertx.reactivex.core.http with type arguments of type WebSocket Modifier and Type Method Description voidHttpClient. webSocket(int port, String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)Connect a WebSocket to the specified port, host and relative request URIvoidHttpClient. webSocket(WebSocketConnectOptions options, Handler<AsyncResult<WebSocket>> handler)Connect a WebSocket with the specified options.voidHttpClient. webSocket(String requestURI, Handler<AsyncResult<WebSocket>> handler)Connect a WebSocket at the relative request URI using the default host and portvoidHttpClient. webSocket(String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)Connect a WebSocket to the host and relative request URI and default portvoidHttpClient. webSocketAbs(String url, MultiMap headers, WebsocketVersion version, List<String> subProtocols, Handler<AsyncResult<WebSocket>> handler)Connect a WebSocket with the specified absolute url, with the specified headers, using the specified version of WebSockets, and the specified WebSocket sub protocols.
-