Uses of Interface
io.netty.channel.ChannelInboundInvoker
-
Packages that use ChannelInboundInvoker Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel. -
-
Uses of ChannelInboundInvoker in io.netty.channel
Subinterfaces of ChannelInboundInvoker in io.netty.channel Modifier and Type Interface Description interface
ChannelHandlerContext
Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.interface
ChannelPipeline
A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.Classes in io.netty.channel that implement ChannelInboundInvoker Modifier and Type Class Description class
DefaultChannelPipeline
The defaultChannelPipeline
implementation.Methods in io.netty.channel that return ChannelInboundInvoker Modifier and Type Method Description ChannelInboundInvoker
ChannelInboundInvoker. fireChannelActive()
AChannel
is active now, which means it is connected.ChannelInboundInvoker
ChannelInboundInvoker. fireChannelInactive()
AChannel
is inactive now, which means it is closed.ChannelInboundInvoker
ChannelInboundInvoker. fireChannelRead(java.lang.Object msg)
AChannel
received a message.ChannelInboundInvoker
ChannelInboundInvoker. fireChannelReadComplete()
Triggers anChannelInboundHandler.channelReadComplete(ChannelHandlerContext)
event to the nextChannelInboundHandler
in theChannelPipeline
.ChannelInboundInvoker
ChannelInboundInvoker. fireChannelRegistered()
ChannelInboundInvoker
ChannelInboundInvoker. fireChannelUnregistered()
ChannelInboundInvoker
ChannelInboundInvoker. fireChannelWritabilityChanged()
Triggers anChannelInboundHandler.channelWritabilityChanged(ChannelHandlerContext)
event to the nextChannelInboundHandler
in theChannelPipeline
.ChannelInboundInvoker
ChannelInboundInvoker. fireExceptionCaught(java.lang.Throwable cause)
AChannel
received anThrowable
in one of its inbound operations.ChannelInboundInvoker
ChannelInboundInvoker. fireUserEventTriggered(java.lang.Object event)
AChannel
received an user defined event.
-