public class WebSocketFrameHandler extends SimpleChannelInboundHandler<WebSocketFrame>
ChannelHandler.Sharable
构造器和说明 |
---|
WebSocketFrameHandler() |
限定符和类型 | 方法和说明 |
---|---|
protected void |
channelRead0(ChannelHandlerContext ctx,
WebSocketFrame frame)
Is called for each message of type
I . |
void |
userEventTriggered(ChannelHandlerContext ctx,
java.lang.Object evt)
Calls
ChannelHandlerContext.fireUserEventTriggered(Object) to forward
to the next ChannelInboundHandler in the ChannelPipeline . |
acceptInboundMessage, channelRead
channelActive, channelInactive, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught
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 java.lang.Exception
SimpleChannelInboundHandler
I
.channelRead0
在类中 SimpleChannelInboundHandler<WebSocketFrame>
ctx
- the ChannelHandlerContext
which this SimpleChannelInboundHandler
belongs toframe
- the message to handlejava.lang.Exception
- is thrown if an error occurredpublic void userEventTriggered(ChannelHandlerContext ctx, java.lang.Object evt) throws java.lang.Exception
ChannelInboundHandlerAdapter
ChannelHandlerContext.fireUserEventTriggered(Object)
to forward
to the next ChannelInboundHandler
in the ChannelPipeline
.
Sub-classes may override this method to change behavior.userEventTriggered
在接口中 ChannelInboundHandler
userEventTriggered
在类中 ChannelInboundHandlerAdapter
java.lang.Exception