Uses of Class
io.vertx.mutiny.core.http.WebSocketClient
Packages that use WebSocketClient
-
Uses of WebSocketClient in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return WebSocketClientModifier and TypeMethodDescriptionVertx.createWebSocketClient()Create a WebSocket client using default optionsVertx.createWebSocketClient(io.vertx.core.http.WebSocketClientOptions options) Create a WebSocket client using the specified options -
Uses of WebSocketClient in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type WebSocketClientModifier and TypeFieldDescriptionstatic final TypeArg<WebSocketClient>WebSocketClient.__TYPE_ARGMethods in io.vertx.mutiny.core.http that return WebSocketClientModifier and TypeMethodDescriptionWebSocketClient.closeAndForget()Close immediately (shutdown(0, TimeUnit.SECONDS).WebSocketClient.connectAndForget(int port, String host, String requestURI) Connect a WebSocket to the specified port, host and relative request URI.WebSocketClient.connectAndForget(io.vertx.core.http.WebSocketConnectOptions options) Connect a WebSocket with the specified options.WebSocketClient.connectAndForget(String requestURI) Connect a WebSocket to the default client port, default client host and specified, relative request URI.WebSocketClient.connectAndForget(String host, String requestURI) Connect a WebSocket to the default client port and specified host and relative request URI.static WebSocketClientWebSocketClient.newInstance(io.vertx.core.http.WebSocketClient delegate) Creates a new instance of theWebSocketClient.WebSocketClient.shutdownAndForget()Shutdown with a 30 seconds timeout (shutdown(30, TimeUnit.SECONDS)).WebSocketClient.shutdownAndForget(long timeout, TimeUnit unit) Callsshutdown(Duration).WebSocketClient.shutdownAndForget(Duration timeout) Initiate the client shutdown sequence.WebSocketClient.updateSSLOptionsAndForget(io.vertx.core.net.ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptionsAndForget(io.vertx.core.net.ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.