Uses of Interface
io.inverno.mod.http.server.ws.WebSocketFrame
Packages that use WebSocketFrame
-
Uses of WebSocketFrame in io.inverno.mod.http.server.ws
Methods in io.inverno.mod.http.server.ws that return WebSocketFrameModifier and TypeMethodDescriptiondefault WebSocketFrameWebSocketFrame.Factory.binary(io.netty.buffer.ByteBuf data) Creates a final binary frame with the specified payload data.WebSocketFrame.Factory.binary(io.netty.buffer.ByteBuf data, boolean finalFragment) Creates a binary frame with the specified payload data.WebSocketFrame.Factory.continuation(io.netty.buffer.ByteBuf data, boolean finalFragment) Creates a continuation frame with the specified payload data.WebSocketFrame.Factory.ping(io.netty.buffer.ByteBuf data) Creates a ping frame with the specified payload data.WebSocketFrame.Factory.pong(io.netty.buffer.ByteBuf data) Creates a pong frame with the specified payload data.WebSocketFrame.release()Decreases the reference count by1of the frame and deallocates the frame if the reference count reaches at0.WebSocketFrame.retain()Increases the reference count of the frame.WebSocketFrame.retainedDuplicate()Returns a retained frame which shares the whole region of this frame's data.default WebSocketFrameWebSocketFrame.Factory.text(io.netty.buffer.ByteBuf data) Creates a final text frame with the specified payload data.WebSocketFrame.Factory.text(io.netty.buffer.ByteBuf data, boolean finalFragment) Creates a text frame with the specified payload data.default WebSocketFrameCreates a final text frame with the specified payload data.default WebSocketFrameCreates a text frame with the specified payload data.Methods in io.inverno.mod.http.server.ws that return types with arguments of type WebSocketFrameModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WebSocketFrame>WebSocketExchange.Inbound.frames()Returns the frames received by the server from the client.org.reactivestreams.Publisher<WebSocketFrame>WebSocketMessage.frames()Returns the frames that composes the message.Method parameters in io.inverno.mod.http.server.ws with type arguments of type WebSocketFrameModifier and TypeMethodDescriptionvoidWebSocketExchange.Outbound.frames(Function<WebSocketFrame.Factory, org.reactivestreams.Publisher<WebSocketFrame>> frames) Specifies the stream of frames sent to the client.