public class WebSocketFrameHandler extends SimpleChannelInboundHandler<WebSocketFrame>
ChannelHandler.Sharable
Constructor and Description |
---|
WebSocketFrameHandler() |
Modifier and Type | Method and Description |
---|---|
protected void |
channelRead0(ChannelHandlerContext ctx,
WebSocketFrame frame)
Please keep in mind that this method will be renamed to
messageReceived(ChannelHandlerContext, I) in 5.0. |
acceptInboundMessage, channelRead
channelActive, channelInactive, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggered
ensureNotSharable, handlerAdded, handlerRemoved, isSharable
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
handlerAdded, handlerRemoved
protected void channelRead0(ChannelHandlerContext ctx, WebSocketFrame frame) throws Exception
SimpleChannelInboundHandler
messageReceived(ChannelHandlerContext, I)
in 5.0.
Is called for each message of type I
.channelRead0
in class SimpleChannelInboundHandler<WebSocketFrame>
ctx
- the ChannelHandlerContext
which this SimpleChannelInboundHandler
belongs toframe
- the message to handleException
- is thrown if an error occurredCopyright © 2008–2019 The Netty Project. All rights reserved.