Uses of Class
io.netty.handler.codec.http.websocketx.WebSocketFrame
Packages that use WebSocketFrame
Package
Description
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Encoder, decoder, handshakers to handle
WebSocket Extensions.
Encoder, decoder, handshakers to handle most common WebSocket Compression Extensions.
-
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx
Subclasses of WebSocketFrame in io.netty.handler.codec.http.websocketxModifier and TypeClassDescriptionclass
Web Socket frame containing binary data.class
Web Socket Frame for closing the connection.class
Web Socket continuation frame containing continuation text or binary data.class
Web Socket frame containing binary data.class
Web Socket frame containing binary data.class
Web Socket text frame.Methods in io.netty.handler.codec.http.websocketx that return WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrame
WebSocketFrameAggregator.beginAggregation
(WebSocketFrame start, ByteBuf content) WebSocketFrame.copy()
private WebSocketFrame
WebSocket00FrameDecoder.decodeBinaryFrame
(ChannelHandlerContext ctx, byte type, ByteBuf buffer) private WebSocketFrame
WebSocket00FrameDecoder.decodeTextFrame
(ChannelHandlerContext ctx, ByteBuf buffer) WebSocketFrame.duplicate()
WebSocketChunkedInput.readChunk
(ByteBufAllocator allocator) Fetches a chunked data from the stream.WebSocketChunkedInput.readChunk
(ChannelHandlerContext ctx) Deprecated.abstract WebSocketFrame
WebSocketFrame.retain()
WebSocketFrame.retain
(int increment) WebSocketFrame.retainedDuplicate()
WebSocketFrame.touch()
Methods in io.netty.handler.codec.http.websocketx with parameters of type WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrame
WebSocketFrameAggregator.beginAggregation
(WebSocketFrame start, ByteBuf content) protected void
WebSocketClientProtocolHandler.decode
(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected void
WebSocketProtocolHandler.decode
(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected void
WebSocketServerProtocolHandler.decode
(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected void
WebSocket00FrameEncoder.encode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected void
WebSocket08FrameEncoder.encode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected boolean
WebSocketFrameAggregator.isAggregated
(WebSocketFrame msg) protected boolean
WebSocketFrameAggregator.isContentLengthInvalid
(WebSocketFrame start, int maxContentLength) protected boolean
WebSocketFrameAggregator.isContentMessage
(WebSocketFrame msg) protected boolean
WebSocketFrameAggregator.isStartMessage
(WebSocketFrame msg) protected Object
WebSocketFrameAggregator.newContinueResponse
(WebSocketFrame start, int maxContentLength, ChannelPipeline pipeline) private void
Utf8FrameValidator.protocolViolation
(ChannelHandlerContext ctx, WebSocketFrame frame, CorruptedWebSocketFrameException ex) -
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx.extensions
Methods in io.netty.handler.codec.http.websocketx.extensions with parameters of type WebSocketFrameModifier and TypeMethodDescriptionboolean
WebSocketExtensionFilter.mustSkip
(WebSocketFrame frame) Returnstrue
if the evaluation of the extension must skipped for the given frame otherwisefalse
. -
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx.extensions.compression
Methods in io.netty.handler.codec.http.websocketx.extensions.compression with parameters of type WebSocketFrameModifier and TypeMethodDescriptionprotected abstract boolean
DeflateDecoder.appendFrameTail
(WebSocketFrame msg) protected boolean
PerFrameDeflateDecoder.appendFrameTail
(WebSocketFrame msg) protected boolean
PerMessageDeflateDecoder.appendFrameTail
(WebSocketFrame msg) private ByteBuf
DeflateEncoder.compressContent
(ChannelHandlerContext ctx, WebSocketFrame msg) protected void
DeflateDecoder.decode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected void
PerMessageDeflateDecoder.decode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) private ByteBuf
DeflateDecoder.decompressContent
(ChannelHandlerContext ctx, WebSocketFrame msg) protected void
DeflateEncoder.encode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected void
PerMessageDeflateEncoder.encode
(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected abstract int
DeflateDecoder.newRsv
(WebSocketFrame msg) protected int
PerFrameDeflateDecoder.newRsv
(WebSocketFrame msg) protected int
PerMessageDeflateDecoder.newRsv
(WebSocketFrame msg) protected abstract boolean
DeflateEncoder.removeFrameTail
(WebSocketFrame msg) protected boolean
PerFrameDeflateEncoder.removeFrameTail
(WebSocketFrame msg) protected boolean
PerMessageDeflateEncoder.removeFrameTail
(WebSocketFrame msg) protected abstract int
DeflateEncoder.rsv
(WebSocketFrame msg) protected int
PerFrameDeflateEncoder.rsv
(WebSocketFrame msg) protected int
PerMessageDeflateEncoder.rsv
(WebSocketFrame msg)
WebSocketChunkedInput.readChunk(ByteBufAllocator)
.