Uses of Class
io.vertx.rxjava3.core.http.WebSocketFrame
-
Packages that use WebSocketFrame Package Description io.vertx.rxjava3.core.http -
-
Uses of WebSocketFrame in io.vertx.rxjava3.core.http
Fields in io.vertx.rxjava3.core.http with type parameters of type WebSocketFrame Modifier and Type Field Description static TypeArg<WebSocketFrame>
WebSocketFrame. __TYPE_ARG
Methods in io.vertx.rxjava3.core.http that return WebSocketFrame Modifier and Type Method Description static WebSocketFrame
WebSocketFrame. binaryFrame(Buffer data, boolean isFinal)
Create a binary WebSocket frame.static WebSocketFrame
WebSocketFrame. continuationFrame(Buffer data, boolean isFinal)
Create a continuation framestatic WebSocketFrame
WebSocketFrame. newInstance(WebSocketFrame arg)
static WebSocketFrame
WebSocketFrame. pingFrame(Buffer data)
Create a ping WebSocket frame.static WebSocketFrame
WebSocketFrame. pongFrame(Buffer data)
Create a pong WebSocket frame.static WebSocketFrame
WebSocketFrame. textFrame(String str, boolean isFinal)
Create a text WebSocket frame.Methods in io.vertx.rxjava3.core.http with parameters of type WebSocketFrame Modifier and Type Method Description io.reactivex.rxjava3.core.Completable
ClientWebSocket. rxWriteFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
ServerWebSocket. rxWriteFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
WebSocket. rxWriteFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
WebSocketBase. rxWriteFrame(WebSocketFrame frame)
Same asWebSocketBase.writeFrame(io.vertx.rxjava3.core.http.WebSocketFrame)
but with anhandler
called when the operation completesio.reactivex.rxjava3.core.Completable
ClientWebSocket. writeFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
ServerWebSocket. writeFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
WebSocket. writeFrame(WebSocketFrame frame)
io.reactivex.rxjava3.core.Completable
WebSocketBase. writeFrame(WebSocketFrame frame)
Same asWebSocketBase.writeFrame(io.vertx.rxjava3.core.http.WebSocketFrame)
but with anhandler
called when the operation completesMethod parameters in io.vertx.rxjava3.core.http with type arguments of type WebSocketFrame Modifier and Type Method Description ClientWebSocket
ClientWebSocket. frameHandler(Handler<WebSocketFrame> handler)
ServerWebSocket
ServerWebSocket. frameHandler(Handler<WebSocketFrame> handler)
WebSocket
WebSocket. frameHandler(Handler<WebSocketFrame> handler)
WebSocketBase
WebSocketBase. frameHandler(Handler<WebSocketFrame> handler)
Set a frame handler on the connection.
-