Package | Description |
---|---|
io.netty.handler.codec.http.websocketx |
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
|
Modifier and Type | Class and 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 with assumed UTF-8 encoding
|
Modifier and Type | Method and Description |
---|---|
abstract WebSocketFrame |
WebSocketFrame.copy() |
abstract WebSocketFrame |
WebSocketFrame.duplicate() |
WebSocketFrame |
WebSocketFrame.retain() |
WebSocketFrame |
WebSocketFrame.retain(int increment) |
Modifier and Type | Method and Description |
---|---|
protected void |
WebSocketServerProtocolHandler.decode(io.netty.channel.ChannelHandlerContext ctx,
WebSocketFrame frame,
List<Object> out) |
protected void |
WebSocketFrameAggregator.decode(io.netty.channel.ChannelHandlerContext ctx,
WebSocketFrame msg,
List<Object> out) |
protected void |
WebSocketClientProtocolHandler.decode(io.netty.channel.ChannelHandlerContext ctx,
WebSocketFrame frame,
List<Object> out) |
protected void |
WebSocket08FrameEncoder.encode(io.netty.channel.ChannelHandlerContext ctx,
WebSocketFrame msg,
io.netty.buffer.ByteBuf out) |
protected void |
WebSocket00FrameEncoder.encode(io.netty.channel.ChannelHandlerContext ctx,
WebSocketFrame msg,
io.netty.buffer.ByteBuf out) |
Copyright © 2008–2013 The Netty Project. All rights reserved.