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.io.netty.channel.embedded A virtualChannel
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.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 (package private) class
AbstractChannelHandlerContext
private static class
CombinedChannelDuplexHandler.DelegatingChannelHandlerContext
(package private) class
DefaultChannelHandlerContext
class
DefaultChannelPipeline
The defaultChannelPipeline
implementation.(package private) class
DefaultChannelPipeline.HeadContext
(package private) class
DefaultChannelPipeline.TailContext
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. -
Uses of ChannelInboundInvoker in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement ChannelInboundInvoker Modifier and Type Class Description private class
EmbeddedChannel.EmbeddedChannelPipeline
-