Uses of Class
io.netty5.channel.ChannelException
-
Packages that use ChannelException Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.io.netty5.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of ChannelException in io.netty5.channel
Subclasses of ChannelException in io.netty5.channel Modifier and Type Class Description class
ChannelPipelineException
AChannelException
which is thrown when aChannelPipeline
failed to execute an operation.class
EventLoopException
SpecialChannelException
which will be thrown byEventLoop
andEventLoopGroup
implementations when an error occurs. -
Uses of ChannelException in io.netty5.channel.group
Subclasses of ChannelException in io.netty5.channel.group Modifier and Type Class Description class
ChannelGroupException
ChannelException
which holdsFuture
s that failed because of an error. -
Uses of ChannelException in io.netty5.handler.timeout
Subclasses of ChannelException in io.netty5.handler.timeout Modifier and Type Class Description class
ReadTimeoutException
ATimeoutException
raised byReadTimeoutHandler
when no data was read within a certain period of time.class
TimeoutException
ATimeoutException
when no data was either read or written within a certain period of time.class
WriteTimeoutException
ATimeoutException
raised byWriteTimeoutHandler
when a write operation cannot finish in a certain period of time.
-