Uses of Class
io.vertx.mutiny.core.http.ClientWebSocket
Packages that use ClientWebSocket
-
Uses of ClientWebSocket in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type ClientWebSocketModifier and TypeFieldDescriptionstatic final TypeArg<ClientWebSocket>ClientWebSocket.__TYPE_ARGMethods in io.vertx.mutiny.core.http that return ClientWebSocketModifier and TypeMethodDescriptionClientWebSocket.binaryMessageHandler(Consumer<io.vertx.core.buffer.Buffer> handler) ClientWebSocket.closeAndForget()Close the WebSocket sending the default close frame.ClientWebSocket.closeAndForget(short arg0) Close the WebSocket sending a close frame with specified status code.ClientWebSocket.closeAndForget(short arg0, String arg1) Close sending a close frame with specified status code and reason.ClientWebSocket.closeHandler(Runnable handler) ClientWebSocket.connectAndForget(int port, String host, String requestURI) Connect this WebSocket to the specified port, host and relative request URI.ClientWebSocket.connectAndForget(io.vertx.core.http.WebSocketConnectOptions options) Connect this WebSocket with the specified options.ClientWebSocket.connectAndForget(String requestURI) Connect this WebSocket at the relative request URI using the default host and port.ClientWebSocket.connectAndForget(String host, String requestURI) Connect this WebSocket to the host and relative request URI and default port.ClientWebSocket.drainHandler(Runnable handler) ClientWebSocket.endAndForget()CallsWebSocket.close()ClientWebSocket.endAndForget(io.vertx.core.buffer.Buffer arg0) Same asend()but writes some data to the stream before ending.ClientWebSocket.endHandler(Runnable endHandler) ClientWebSocket.exceptionHandler(Consumer<Throwable> handler) ClientWebSocket.fetch(long amount) ClientWebSocket.frameHandler(Consumer<io.vertx.core.http.WebSocketFrame> handler) static ClientWebSocketClientWebSocket.newInstance(io.vertx.core.http.ClientWebSocket delegate) Creates a new instance of theClientWebSocket.ClientWebSocket.pause()ClientWebSocket.pipeToAndForget(WriteStream<io.vertx.core.buffer.Buffer> arg0) Pipe thisReadStreamto theWriteStream.ClientWebSocket.pongHandler(Consumer<io.vertx.core.buffer.Buffer> handler) ClientWebSocket.resume()ClientWebSocket.setWriteQueueMaxSize(int maxSize) ClientWebSocket.shutdownAndForget()Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout, the status code1000anullreason.ClientWebSocket.shutdownAndForget(long arg0, TimeUnit arg1) Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout.ClientWebSocket.shutdownAndForget(long arg0, TimeUnit arg1, short arg2) Callsshutdown(long, TimeUnit, short, String)with anullreason.ClientWebSocket.shutdownAndForget(long arg0, TimeUnit arg1, short arg2, String arg3) ClientWebSocket.shutdownAndForget(short arg0) Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout and anullreason.ClientWebSocket.shutdownAndForget(short arg0, String arg1) Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout.ClientWebSocket.shutdownAndForget(Duration arg0) Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout and anullreason.ClientWebSocket.shutdownAndForget(Duration arg0, short arg1) Likeshutdown(long, TimeUnit, short, String)with a 30 seconds timeout.ClientWebSocket.shutdownAndForget(Duration arg0, short arg1, String arg2) Callsshutdown(long, TimeUnit, short, String)with anullreason.ClientWebSocket.shutdownHandler(Runnable arg0) Set ahandlernotified when the WebSocket is shutdown: the client or server will close the connection within a certain amount of time.ClientWebSocket.textMessageHandler(Consumer<String> handler) WebSocketClient.webSocket()Create a WebSocket that is not yet connected to the server.ClientWebSocket.writeAndForget(io.vertx.core.buffer.Buffer arg0) Write some data to the stream.ClientWebSocket.writeBinaryMessageAndForget(io.vertx.core.buffer.Buffer arg0) Writes a (potentially large) piece of binary data to the connection.ClientWebSocket.writeFinalBinaryFrameAndForget(io.vertx.core.buffer.Buffer arg0) Write a final WebSocket binary frame to the connectionClientWebSocket.writeFinalTextFrameAndForget(String arg0) Write a final WebSocket text frame to the connectionClientWebSocket.writeFrameAndForget(io.vertx.core.http.WebSocketFrame arg0) Write a WebSocket frame to the connectionClientWebSocket.writePingAndForget(io.vertx.core.buffer.Buffer arg0) Writes a ping frame to the connection.ClientWebSocket.writePongAndForget(io.vertx.core.buffer.Buffer arg0) Writes a pong frame to the connection.ClientWebSocket.writeTextMessageAndForget(String arg0) Writes a (potentially large) piece of text data to the connection.