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 classBinaryWebSocketFrameWeb Socket frame containing binary data.classCloseWebSocketFrameWeb Socket Frame for closing the connection.classContinuationWebSocketFrameWeb Socket continuation frame containing continuation text or binary data.classPingWebSocketFrameWeb Socket frame containing binary data.classPongWebSocketFrameWeb Socket frame containing binary data.classTextWebSocketFrameWeb Socket text frame.Methods in io.netty5.handler.codec.http.websocketx that return WebSocketFrame Modifier and Type Method Description protected WebSocketFrameWebSocketFrameAggregator. beginAggregation(BufferAllocator allocator, WebSocketFrame start)WebSocketFrameWebSocketChunkedInput. readChunk(BufferAllocator allocator)Fetches a chunked data from the stream.protected WebSocketFrameBinaryWebSocketFrame. receive(Buffer buf)protected WebSocketFrameCloseWebSocketFrame. receive(Buffer buf)protected WebSocketFrameContinuationWebSocketFrame. receive(Buffer buf)protected WebSocketFramePingWebSocketFrame. receive(Buffer buf)protected WebSocketFramePongWebSocketFrame. receive(Buffer buf)protected WebSocketFrameTextWebSocketFrame. receive(Buffer buf)protected WebSocketFrameWebSocketFrameAggregator. tryStartMessage(Object msg)Methods in io.netty5.handler.codec.http.websocketx with parameters of type WebSocketFrame Modifier and Type Method Description protected voidWebSocketFrameAggregator. aggregate(BufferAllocator allocator, WebSocketFrame aggregated, ContinuationWebSocketFrame content)protected WebSocketFrameWebSocketFrameAggregator. beginAggregation(BufferAllocator allocator, WebSocketFrame start)protected voidWebSocketClientProtocolHandler. decodeAndClose(ChannelHandlerContext ctx, WebSocketFrame frame)protected voidWebSocketServerProtocolHandler. decodeAndClose(ChannelHandlerContext ctx, WebSocketFrame frame)protected voidWebSocket13FrameEncoder. encodeAndClose(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out)protected booleanWebSocketFrameAggregator. isContentLengthInvalid(WebSocketFrame start, int maxContentLength)protected intWebSocketFrameAggregator. lengthForAggregation(WebSocketFrame msg)protected ObjectWebSocketFrameAggregator. 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 booleanWebSocketExtensionFilter. mustSkip(WebSocketFrame frame)Returnstrueif the evaluation of the extension must skipped for the given frame otherwisefalse.
-