Uses of Interface
io.netty.channel.ChannelInboundInvoker
Packages that use ChannelInboundInvoker
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual
Channel
that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.-
Uses of ChannelInboundInvoker in io.netty.channel
Subinterfaces of ChannelInboundInvoker in io.netty.channelModifier and TypeInterfaceDescriptioninterface
Enables aChannelHandler
to interact with itsChannelPipeline
and other handlers.interface
A list ofChannelHandler
s which handles or intercepts inbound events and outbound operations of aChannel
.Classes in io.netty.channel that implement ChannelInboundInvokerModifier and TypeClassDescription(package private) class
private static class
(package private) final class
class
The defaultChannelPipeline
implementation.(package private) final class
(package private) final class
Methods in io.netty.channel that return ChannelInboundInvokerModifier and TypeMethodDescriptionChannelInboundInvoker.fireChannelActive()
AChannel
is active now, which means it is connected.ChannelInboundInvoker.fireChannelInactive()
AChannel
is inactive now, which means it is closed.ChannelInboundInvoker.fireChannelRead
(Object msg) AChannel
received a message.ChannelInboundInvoker.fireChannelReadComplete()
Triggers anChannelInboundHandler.channelReadComplete(ChannelHandlerContext)
event to the nextChannelInboundHandler
in theChannelPipeline
.ChannelInboundInvoker.fireChannelRegistered()
ChannelInboundInvoker.fireChannelUnregistered()
ChannelInboundInvoker.fireChannelWritabilityChanged()
Triggers anChannelInboundHandler.channelWritabilityChanged(ChannelHandlerContext)
event to the nextChannelInboundHandler
in theChannelPipeline
.ChannelInboundInvoker.fireExceptionCaught
(Throwable cause) ChannelInboundInvoker.fireUserEventTriggered
(Object event) AChannel
received an user defined event. -
Uses of ChannelInboundInvoker in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement ChannelInboundInvoker