Uses of Class
io.vertx.reactivex.core.http.WebSocketFrame
-
Packages that use WebSocketFrame Package Description io.vertx.reactivex.core.http -
-
Uses of WebSocketFrame in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.core.http with type parameters of type WebSocketFrame Modifier and Type Field Description static TypeArg<WebSocketFrame>WebSocketFrame. __TYPE_ARGMethods in io.vertx.reactivex.core.http that return WebSocketFrame Modifier and Type Method Description static WebSocketFrameWebSocketFrame. binaryFrame(Buffer data, boolean isFinal)Create a binary WebSocket frame.static WebSocketFrameWebSocketFrame. continuationFrame(Buffer data, boolean isFinal)Create a continuation framestatic WebSocketFrameWebSocketFrame. newInstance(io.vertx.core.http.WebSocketFrame arg)static WebSocketFrameWebSocketFrame. pingFrame(Buffer data)Create a ping WebSocket frame.static WebSocketFrameWebSocketFrame. pongFrame(Buffer data)Create a pong WebSocket frame.static WebSocketFrameWebSocketFrame. textFrame(String str, boolean isFinal)Create a text WebSocket frame.Methods in io.vertx.reactivex.core.http with parameters of type WebSocketFrame Modifier and Type Method Description io.reactivex.CompletableClientWebSocket. rxWriteFrame(WebSocketFrame frame)io.reactivex.CompletableServerWebSocket. rxWriteFrame(WebSocketFrame frame)io.reactivex.CompletableWebSocket. rxWriteFrame(WebSocketFrame frame)io.reactivex.CompletableWebSocketBase. rxWriteFrame(WebSocketFrame frame)Same asWebSocketBase.writeFrame(io.vertx.reactivex.core.http.WebSocketFrame, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesClientWebSocketClientWebSocket. writeFrame(WebSocketFrame frame)ClientWebSocketClientWebSocket. writeFrame(WebSocketFrame frame, io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)ServerWebSocketServerWebSocket. writeFrame(WebSocketFrame frame)ServerWebSocketServerWebSocket. writeFrame(WebSocketFrame frame, io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)WebSocketWebSocket. writeFrame(WebSocketFrame frame)WebSocketWebSocket. writeFrame(WebSocketFrame frame, io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)WebSocketBaseWebSocketBase. writeFrame(WebSocketFrame frame)Same asWebSocketBase.writeFrame(io.vertx.reactivex.core.http.WebSocketFrame, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesWebSocketBaseWebSocketBase. writeFrame(WebSocketFrame frame, io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler)Same asWebSocketBase.writeFrame(io.vertx.reactivex.core.http.WebSocketFrame, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but with anhandlercalled when the operation completesMethod parameters in io.vertx.reactivex.core.http with type arguments of type WebSocketFrame Modifier and Type Method Description ClientWebSocketClientWebSocket. frameHandler(io.vertx.core.Handler<WebSocketFrame> handler)ServerWebSocketServerWebSocket. frameHandler(io.vertx.core.Handler<WebSocketFrame> handler)WebSocketWebSocket. frameHandler(io.vertx.core.Handler<WebSocketFrame> handler)WebSocketBaseWebSocketBase. frameHandler(io.vertx.core.Handler<WebSocketFrame> handler)Set a frame handler on the connection.
-