Uses of Interface
io.inverno.mod.http.base.ws.WebSocketFrame
Packages that use WebSocketFrame
Package
Description
Inverno HTTP WebSocket base API implementation classes.
Inverno HTTP WebSocket base API.
-
Uses of WebSocketFrame in io.inverno.mod.http.base.internal.ws
Classes in io.inverno.mod.http.base.internal.ws that implement WebSocketFrameMethods in io.inverno.mod.http.base.internal.ws that return WebSocketFrameModifier and TypeMethodDescriptionGenericWebSocketFrame.GenericFactory.binary(io.netty.buffer.ByteBuf data, boolean finalFragment) GenericWebSocketFrame.GenericFactory.continuation(io.netty.buffer.ByteBuf data, boolean finalFragment) GenericWebSocketFrame.GenericFactory.ping(io.netty.buffer.ByteBuf data) GenericWebSocketFrame.GenericFactory.pong(io.netty.buffer.ByteBuf data) GenericWebSocketFrame.release()GenericWebSocketFrame.retain()GenericWebSocketFrame.retainedDuplicate()GenericWebSocketFrame.GenericFactory.text(io.netty.buffer.ByteBuf data, boolean finalFragment) Methods in io.inverno.mod.http.base.internal.ws that return types with arguments of type WebSocketFrameModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WebSocketFrame> GenericWebSocketMessage.frames()Methods in io.inverno.mod.http.base.internal.ws with parameters of type WebSocketFrameModifier and TypeMethodDescriptionio.netty.handler.codec.http.websocketx.WebSocketFrameGenericWebSocketFrame.GenericFactory.toUnderlyingWebSocketFrame(WebSocketFrame webSocketFrame) Converts the specified webSocketFrame to an underlying WebSocket frame.Constructor parameters in io.inverno.mod.http.base.internal.ws with type arguments of type WebSocketFrameModifierConstructorDescriptionGenericWebSocketMessage(WebSocketMessage.Kind kind, org.reactivestreams.Publisher<WebSocketFrame> frames) Creates a generic WebSocket message. -
Uses of WebSocketFrame in io.inverno.mod.http.base.ws
Methods in io.inverno.mod.http.base.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.base.ws that return types with arguments of type WebSocketFrameModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WebSocketFrame> BaseWebSocketExchange.Inbound.frames()Returns the received frames.org.reactivestreams.Publisher<WebSocketFrame> WebSocketMessage.frames()Returns the frames that composes the message.Method parameters in io.inverno.mod.http.base.ws with type arguments of type WebSocketFrameModifier and TypeMethodDescriptionvoidBaseWebSocketExchange.Outbound.frames(Function<WebSocketFrame.Factory, org.reactivestreams.Publisher<WebSocketFrame>> frames) Sets the stream of frames to send.