Uses of Class
io.netty5.handler.codec.http.websocketx.WebSocketFrame
-
Packages that use WebSocketFrame Package Description io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions. -
-
Uses of WebSocketFrame in io.netty5.handler.codec.http.websocketx
Subclasses of WebSocketFrame in io.netty5.handler.codec.http.websocketx Modifier and Type Class Description class
BinaryWebSocketFrame
Web Socket frame containing binary data.class
CloseWebSocketFrame
Web Socket Frame for closing the connection.class
ContinuationWebSocketFrame
Web Socket continuation frame containing continuation text or binary data.class
PingWebSocketFrame
Web Socket frame containing binary data.class
PongWebSocketFrame
Web Socket frame containing binary data.class
TextWebSocketFrame
Web Socket text frame.Methods in io.netty5.handler.codec.http.websocketx that return WebSocketFrame Modifier and Type Method Description protected WebSocketFrame
WebSocketFrameAggregator. beginAggregation(BufferAllocator allocator, WebSocketFrame start)
WebSocketFrame
WebSocketChunkedInput. readChunk(BufferAllocator allocator)
Fetches a chunked data from the stream.protected WebSocketFrame
BinaryWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
CloseWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
ContinuationWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
PingWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
PongWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
TextWebSocketFrame. receive(Buffer buf)
protected WebSocketFrame
WebSocketFrameAggregator. tryStartMessage(Object msg)
Methods in io.netty5.handler.codec.http.websocketx with parameters of type WebSocketFrame Modifier and Type Method Description protected void
WebSocketFrameAggregator. aggregate(BufferAllocator allocator, WebSocketFrame aggregated, ContinuationWebSocketFrame content)
protected WebSocketFrame
WebSocketFrameAggregator. beginAggregation(BufferAllocator allocator, WebSocketFrame start)
protected void
WebSocketClientProtocolHandler. decodeAndClose(ChannelHandlerContext ctx, WebSocketFrame frame)
protected void
WebSocketServerProtocolHandler. decodeAndClose(ChannelHandlerContext ctx, WebSocketFrame frame)
protected void
WebSocket13FrameEncoder. encodeAndClose(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out)
protected boolean
WebSocketFrameAggregator. isContentLengthInvalid(WebSocketFrame start, int maxContentLength)
protected int
WebSocketFrameAggregator. lengthForAggregation(WebSocketFrame msg)
protected Object
WebSocketFrameAggregator. newContinueResponse(WebSocketFrame start, int maxContentLength, ChannelPipeline pipeline)
Constructors in io.netty5.handler.codec.http.websocketx with parameters of type WebSocketFrame Constructor Description WebSocketFrame(WebSocketFrame copyFrom, Buffer binaryData)
This is a copy-constructor, used by sub-classes to implementResource.send()
. -
Uses of WebSocketFrame in io.netty5.handler.codec.http.websocketx.extensions
Methods in io.netty5.handler.codec.http.websocketx.extensions with parameters of type WebSocketFrame Modifier and Type Method Description boolean
WebSocketExtensionFilter. mustSkip(WebSocketFrame frame)
Returnstrue
if the evaluation of the extension must skipped for the given frame otherwisefalse
.
-