Uses of Interface
io.vertx.core.http.WebSocket
-
Packages that use WebSocket Package Description io.vertx.core.http io.vertx.core.spi.metrics -
-
Uses of WebSocket in io.vertx.core.http
Subinterfaces of WebSocket in io.vertx.core.http Modifier and Type Interface Description interfaceClientWebSocketRepresents a client-side WebSocket.interfaceServerWebSocketRepresents a server side WebSocket.Methods in io.vertx.core.http that return WebSocket Modifier and Type Method Description WebSocketWebSocket. binaryMessageHandler(Handler<Buffer> handler)WebSocketWebSocket. closeHandler(Handler<Void> handler)WebSocketWebSocket. drainHandler(Handler<Void> handler)WebSocketWebSocket. endHandler(Handler<Void> endHandler)WebSocketWebSocket. exceptionHandler(Handler<Throwable> handler)WebSocketWebSocket. fetch(long amount)WebSocketWebSocket. frameHandler(Handler<WebSocketFrame> handler)WebSocketWebSocket. handler(Handler<Buffer> handler)WebSocketWebSocket. pause()WebSocketWebSocket. pongHandler(Handler<Buffer> handler)default WebSocketWebSocket. resume()WebSocketWebSocket. setWriteQueueMaxSize(int maxSize)WebSocketWebSocket. shutdownHandler(Handler<Void> handler)WebSocketWebSocket. textMessageHandler(Handler<String> handler)Methods in io.vertx.core.http that return types with arguments of type WebSocket Modifier and Type Method Description default Future<WebSocket>ClientWebSocket. connect(int port, String host, String requestURI)Connect this WebSocket to the specified port, host and relative request URI.Future<WebSocket>ClientWebSocket. connect(WebSocketConnectOptions options)Connect this WebSocket with the specified options.default Future<WebSocket>ClientWebSocket. connect(String requestURI)Connect this WebSocket at the relative request URI using the default host and port.default Future<WebSocket>ClientWebSocket. connect(String host, String requestURI)Connect this WebSocket to the host and relative request URI and default port.default Future<WebSocket>WebSocketClient. connect(int port, String host, String requestURI)Connect a WebSocket to the specified port, host and relative request URI.Future<WebSocket>WebSocketClient. connect(WebSocketConnectOptions options)Connect a WebSocket with the specified options.default Future<WebSocket>WebSocketClient. connect(String requestURI)Connect a WebSocket to the default client port, default client host and specified, relative request URI.default Future<WebSocket>WebSocketClient. connect(String host, String requestURI)Connect a WebSocket to the default client port and specified host and relative request URI. -
Uses of WebSocket in io.vertx.core.spi.metrics
Methods in io.vertx.core.spi.metrics with parameters of type WebSocket Modifier and Type Method Description default WHttpClientMetrics. connected(WebSocket webSocket)Called when a web socket connects.
-