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 interfaceChannelHandlerContextEnables aChannelHandlerto interact with itsChannelPipelineand other handlers.interfaceChannelPipelineA list ofChannelHandlers which handles or intercepts inbound events and outbound operations of aChannel.Classes in io.netty.channel that implement ChannelInboundInvoker Modifier and Type Class Description classDefaultChannelPipelineThe defaultChannelPipelineimplementation.Methods in io.netty.channel that return ChannelInboundInvoker Modifier and Type Method Description ChannelInboundInvokerChannelInboundInvoker. fireChannelActive()AChannelis active now, which means it is connected.ChannelInboundInvokerChannelInboundInvoker. fireChannelInactive()AChannelis inactive now, which means it is closed.ChannelInboundInvokerChannelInboundInvoker. fireChannelRead(java.lang.Object msg)AChannelreceived a message.ChannelInboundInvokerChannelInboundInvoker. fireChannelReadComplete()Triggers anChannelInboundHandler.channelReadComplete(ChannelHandlerContext)event to the nextChannelInboundHandlerin theChannelPipeline.ChannelInboundInvokerChannelInboundInvoker. fireChannelRegistered()ChannelInboundInvokerChannelInboundInvoker. fireChannelUnregistered()ChannelInboundInvokerChannelInboundInvoker. fireChannelWritabilityChanged()Triggers anChannelInboundHandler.channelWritabilityChanged(ChannelHandlerContext)event to the nextChannelInboundHandlerin theChannelPipeline.ChannelInboundInvokerChannelInboundInvoker. fireExceptionCaught(java.lang.Throwable cause)AChannelreceived anThrowablein one of its inbound operations.ChannelInboundInvokerChannelInboundInvoker. fireUserEventTriggered(java.lang.Object event)AChannelreceived an user defined event.
-