Uses of Class
io.netty.handler.codec.http.websocketx.WebSocketFrame
-
Packages that use WebSocketFrame Package Description io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http.websocketx.extensions Encoder, decoder, handshakers to handle WebSocket Extensions.io.netty.handler.codec.http.websocketx.extensions.compression 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.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.netty.handler.codec.http.websocketx that return WebSocketFrame Modifier and Type Method Description protected WebSocketFrame
WebSocketFrameAggregator. beginAggregation(WebSocketFrame start, ByteBuf content)
WebSocketFrame
WebSocketFrame. copy()
private WebSocketFrame
WebSocket00FrameDecoder. decodeBinaryFrame(ChannelHandlerContext ctx, byte type, ByteBuf buffer)
private WebSocketFrame
WebSocket00FrameDecoder. decodeTextFrame(ChannelHandlerContext ctx, ByteBuf buffer)
WebSocketFrame
WebSocketFrame. duplicate()
WebSocketFrame
WebSocketChunkedInput. readChunk(ByteBufAllocator allocator)
Fetches a chunked data from the stream.WebSocketFrame
WebSocketChunkedInput. readChunk(ChannelHandlerContext ctx)
Deprecated.abstract WebSocketFrame
WebSocketFrame. replace(ByteBuf content)
WebSocketFrame
WebSocketFrame. retain()
WebSocketFrame
WebSocketFrame. retain(int increment)
WebSocketFrame
WebSocketFrame. retainedDuplicate()
WebSocketFrame
WebSocketFrame. touch()
WebSocketFrame
WebSocketFrame. touch(java.lang.Object hint)
Methods in io.netty.handler.codec.http.websocketx with parameters of type WebSocketFrame Modifier and Type Method Description protected WebSocketFrame
WebSocketFrameAggregator. beginAggregation(WebSocketFrame start, ByteBuf content)
protected void
WebSocketClientProtocolHandler. decode(ChannelHandlerContext ctx, WebSocketFrame frame, java.util.List<java.lang.Object> out)
protected void
WebSocketProtocolHandler. decode(ChannelHandlerContext ctx, WebSocketFrame frame, java.util.List<java.lang.Object> out)
protected void
WebSocketServerProtocolHandler. decode(ChannelHandlerContext ctx, WebSocketFrame frame, java.util.List<java.lang.Object> out)
protected void
WebSocket00FrameEncoder. encode(ChannelHandlerContext ctx, WebSocketFrame msg, java.util.List<java.lang.Object> out)
protected void
WebSocket08FrameEncoder. encode(ChannelHandlerContext ctx, WebSocketFrame msg, java.util.List<java.lang.Object> out)
protected boolean
WebSocketFrameAggregator. isAggregated(WebSocketFrame msg)
protected boolean
WebSocketFrameAggregator. isContentLengthInvalid(WebSocketFrame start, int maxContentLength)
protected boolean
WebSocketFrameAggregator. isContentMessage(WebSocketFrame msg)
private static boolean
Utf8FrameValidator. isControlFrame(WebSocketFrame frame)
protected boolean
WebSocketFrameAggregator. isStartMessage(WebSocketFrame msg)
protected java.lang.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 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
. -
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 WebSocketFrame Modifier and Type Method Description protected 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, java.util.List<java.lang.Object> out)
protected void
PerMessageDeflateDecoder. decode(ChannelHandlerContext ctx, WebSocketFrame msg, java.util.List<java.lang.Object> out)
private ByteBuf
DeflateDecoder. decompressContent(ChannelHandlerContext ctx, WebSocketFrame msg)
protected void
DeflateEncoder. encode(ChannelHandlerContext ctx, WebSocketFrame msg, java.util.List<java.lang.Object> out)
protected void
PerMessageDeflateEncoder. encode(ChannelHandlerContext ctx, WebSocketFrame msg, java.util.List<java.lang.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)
-