Uses of Class
io.netty.channel.ChannelException
-
Packages that use ChannelException 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.group A channel registry which helps a user maintain the list of openChannels and perform bulk operations on them.io.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer. -
-
Uses of ChannelException in io.netty.channel
Subclasses of ChannelException in io.netty.channel Modifier and Type Class Description classChannelPipelineExceptionAChannelExceptionwhich is thrown when aChannelPipelinefailed to execute an operation.classEventLoopExceptionSpecialChannelExceptionwhich will be thrown byEventLoopandEventLoopGroupimplementations when an error occurs.Fields in io.netty.channel declared as ChannelException Modifier and Type Field Description private ChannelExceptionThreadPerChannelEventLoopGroup. tooManyChannelsDeprecated.Methods in io.netty.channel that return ChannelException Modifier and Type Method Description (package private) static ChannelExceptionChannelException. newStatic(java.lang.String message, java.lang.Throwable cause) -
Uses of ChannelException in io.netty.channel.group
Subclasses of ChannelException in io.netty.channel.group Modifier and Type Class Description classChannelGroupExceptionChannelExceptionwhich holdsChannelFutures that failed because of an error. -
Uses of ChannelException in io.netty.handler.timeout
Subclasses of ChannelException in io.netty.handler.timeout Modifier and Type Class Description classReadTimeoutExceptionATimeoutExceptionraised byReadTimeoutHandlerwhen no data was read within a certain period of time.classTimeoutExceptionATimeoutExceptionwhen no data was either read or written within a certain period of time.classWriteTimeoutExceptionATimeoutExceptionraised byWriteTimeoutHandlerwhen a write operation cannot finish in a certain period of time.
-