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 virtualChannelthat 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 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 (package private) classAbstractChannelHandlerContextprivate static classCombinedChannelDuplexHandler.DelegatingChannelHandlerContext(package private) classDefaultChannelHandlerContextclassDefaultChannelPipelineThe defaultChannelPipelineimplementation.(package private) classDefaultChannelPipeline.HeadContext(package private) classDefaultChannelPipeline.TailContextMethods 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. -
Uses of ChannelInboundInvoker in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement ChannelInboundInvoker Modifier and Type Class Description private classEmbeddedChannel.EmbeddedChannelPipeline
-