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.
-
Uses of ChannelInboundInvoker in io.netty.channel
Subinterfaces of ChannelInboundInvoker in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceEnables aChannelHandlerto interact with itsChannelPipelineand other handlers.interfaceA list ofChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel.Classes in io.netty.channel that implement ChannelInboundInvokerMethods in io.netty.channel that return ChannelInboundInvokerModifier and TypeMethodDescriptionChannelInboundInvoker.fireChannelActive()AChannelis active now, which means it is connected.ChannelInboundInvoker.fireChannelInactive()AChannelis inactive now, which means it is closed.ChannelInboundInvoker.fireChannelRead(Object msg) AChannelreceived a message.ChannelInboundInvoker.fireChannelReadComplete()Triggers anChannelInboundHandler.channelReadComplete(ChannelHandlerContext)event to the nextChannelInboundHandlerin theChannelPipeline.ChannelInboundInvoker.fireChannelRegistered()ChannelInboundInvoker.fireChannelUnregistered()ChannelInboundInvoker.fireChannelWritabilityChanged()Triggers anChannelInboundHandler.channelWritabilityChanged(ChannelHandlerContext)event to the nextChannelInboundHandlerin theChannelPipeline.ChannelInboundInvoker.fireExceptionCaught(Throwable cause) ChannelInboundInvoker.fireUserEventTriggered(Object event) AChannelreceived an user defined event.