Uses of Package
io.netty5.handler.timeout
-
Packages that use io.netty5.handler.timeout Package Description io.netty5.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
Classes in io.netty5.handler.timeout used by io.netty5.handler.timeout Class Description IdleState IdleStateEvent A user event triggered byIdleStateHandler
when aChannel
is idle.IdleStateHandler Triggers anIdleStateEvent
when aChannel
has not performed read, write, or both operation for a while.ReadTimeoutException ATimeoutException
raised byReadTimeoutHandler
when no data was read within a certain period of time.TimeoutException ATimeoutException
when no data was either read or written within a certain period of time.WriteTimeoutException ATimeoutException
raised byWriteTimeoutHandler
when a write operation cannot finish in a certain period of time.