-
- All Known Subinterfaces:
ChannelHandlerContext,ChannelPipeline
- All Known Implementing Classes:
AbstractChannel.DefaultAbstractChannelPipeline,DefaultChannelPipeline,DelegatingChannelHandlerContext
public interface ChannelInboundInvoker
-
-
Method Summary
-
-
-
Method Detail
-
fireChannelRegistered
ChannelInboundInvoker fireChannelRegistered()
AChannelwas registered to itsEventLoop. This will result in having theChannelHandler.channelRegistered(ChannelHandlerContext)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelUnregistered
ChannelInboundInvoker fireChannelUnregistered()
AChannelwas unregistered from itsEventLoop. This will result in having theChannelHandler.channelUnregistered(ChannelHandlerContext)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelActive
ChannelInboundInvoker fireChannelActive()
AChannelis active now, which means it is connected. This will result in having theChannelHandler.channelActive(ChannelHandlerContext)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelInactive
ChannelInboundInvoker fireChannelInactive()
AChannelis inactive now, which means it is closed. This will result in having theChannelHandler.channelInactive(ChannelHandlerContext)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelShutdown
ChannelInboundInvoker fireChannelShutdown(ChannelShutdownDirection direction)
AChannelwas shutdown in a specific direction. This will result in having theChannelHandler.channelShutdown(ChannelHandlerContext, ChannelShutdownDirection)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelExceptionCaught
ChannelInboundInvoker fireChannelExceptionCaught(Throwable cause)
AChannelreceived anThrowablein one of its inbound operations. This will result in having theChannelHandler.channelExceptionCaught(ChannelHandlerContext, Throwable)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelInboundEvent
ChannelInboundInvoker fireChannelInboundEvent(Object event)
AChannelreceived a custom defined inbound event. This will result in having theChannelHandler.channelInboundEvent(ChannelHandlerContext, Object)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelRead
ChannelInboundInvoker fireChannelRead(Object msg)
AChannelreceived a message. This will result in having theChannelHandler.channelRead(ChannelHandlerContext, Object)method called of the nextChannelHandlercontained in theChannelPipelineof theChannel.
-
fireChannelReadComplete
ChannelInboundInvoker fireChannelReadComplete()
Triggers anChannelHandler.channelReadComplete(ChannelHandlerContext)event to the nextChannelHandlerin theChannelPipeline.
-
fireChannelWritabilityChanged
ChannelInboundInvoker fireChannelWritabilityChanged()
Triggers anChannelHandler.channelWritabilityChanged(ChannelHandlerContext)event to the nextChannelHandlerin theChannelPipeline.
-
-