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
Subclasses of WebSocket in io.vertx.reactivex.core.http Modifier and Type Class Description class
ClientWebSocket
Represents a client-side WebSocket initially not connected.Fields in io.vertx.reactivex.core.http with type parameters of type WebSocket Modifier and Type Field Description static TypeArg<WebSocket>
WebSocket. __TYPE_ARG
Methods in io.vertx.reactivex.core.http that return types with arguments of type WebSocket Modifier and Type Method Description io.reactivex.Single<WebSocket>
ClientWebSocket. rxConnect(int port, String host, String requestURI)
Connect a WebSocket to the specified port, host and relative request URIio.reactivex.Single<WebSocket>
ClientWebSocket. rxConnect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.io.reactivex.Single<WebSocket>
ClientWebSocket. rxConnect(String requestURI)
Connect this WebSocket at the relative request URI using the default host and port.io.reactivex.Single<WebSocket>
ClientWebSocket. rxConnect(String host, String requestURI)
Connect this WebSocket to the host and relative request URI and default port.io.reactivex.Single<WebSocket>
WebSocketClient. rxConnect(int port, String host, String requestURI)
Connect a WebSocket to the specified port, host and relative request URIio.reactivex.Single<WebSocket>
WebSocketClient. rxConnect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.io.reactivex.Single<WebSocket>
WebSocketClient. rxConnect(String requestURI)
Connect a WebSocket to the default client port, default client host and specified, relative request URI.io.reactivex.Single<WebSocket>
WebSocketClient. rxConnect(String host, String requestURI)
Connect a WebSocket to the default client port and specified host and relative request URI.io.reactivex.Single<WebSocket>
HttpClient. rxWebSocket(int port, String host, String requestURI)
Deprecated.io.reactivex.Single<WebSocket>
HttpClient. rxWebSocket(WebSocketConnectOptions options)
Deprecated.io.reactivex.Single<WebSocket>
HttpClient. rxWebSocket(String requestURI)
Deprecated.io.reactivex.Single<WebSocket>
HttpClient. rxWebSocket(String host, String requestURI)
Deprecated.io.reactivex.Single<WebSocket>
HttpClient. rxWebSocketAbs(String url, MultiMap headers, WebsocketVersion version, List<String> subProtocols)
Deprecated.Method parameters in io.vertx.reactivex.core.http with type arguments of type WebSocket Modifier and Type Method Description void
ClientWebSocket. connect(int port, String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket to the specified port, host and relative request URIvoid
ClientWebSocket. connect(WebSocketConnectOptions options, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket with the specified options.void
ClientWebSocket. connect(String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect this WebSocket at the relative request URI using the default host and port.void
ClientWebSocket. connect(String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect this WebSocket to the host and relative request URI and default port.void
WebSocketClient. connect(int port, String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket to the specified port, host and relative request URIvoid
WebSocketClient. connect(WebSocketConnectOptions options, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket with the specified options.void
WebSocketClient. connect(String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket to the default client port, default client host and specified, relative request URI.void
WebSocketClient. connect(String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Connect a WebSocket to the default client port and specified host and relative request URI.void
HttpClient. webSocket(int port, String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Deprecated.void
HttpClient. webSocket(WebSocketConnectOptions options, Handler<AsyncResult<WebSocket>> handler)
Deprecated.void
HttpClient. webSocket(String requestURI, Handler<AsyncResult<WebSocket>> handler)
Deprecated.void
HttpClient. webSocket(String host, String requestURI, Handler<AsyncResult<WebSocket>> handler)
Deprecated.void
HttpClient. webSocketAbs(String url, MultiMap headers, WebsocketVersion version, List<String> subProtocols, Handler<AsyncResult<WebSocket>> handler)
Deprecated.
-