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. -
-
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()
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
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)
protected boolean
WebSocketFrameAggregator. isStartMessage(WebSocketFrame msg)
protected java.lang.Object
WebSocketFrameAggregator. newContinueResponse(WebSocketFrame start, int maxContentLength, ChannelPipeline pipeline)
-
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
.
-