Uses of Class
io.netty5.handler.timeout.IdleStateEvent
-
Packages that use IdleStateEvent Package Description io.netty5.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of IdleStateEvent in io.netty5.handler.timeout
Fields in io.netty5.handler.timeout declared as IdleStateEvent Modifier and Type Field Description static IdleStateEvent
IdleStateEvent. ALL_IDLE_STATE_EVENT
static IdleStateEvent
IdleStateEvent. FIRST_ALL_IDLE_STATE_EVENT
static IdleStateEvent
IdleStateEvent. FIRST_READER_IDLE_STATE_EVENT
static IdleStateEvent
IdleStateEvent. FIRST_WRITER_IDLE_STATE_EVENT
static IdleStateEvent
IdleStateEvent. READER_IDLE_STATE_EVENT
static IdleStateEvent
IdleStateEvent. WRITER_IDLE_STATE_EVENT
Methods in io.netty5.handler.timeout that return IdleStateEvent Modifier and Type Method Description protected IdleStateEvent
IdleStateHandler. newIdleStateEvent(IdleState state, boolean first)
Returns aIdleStateEvent
.Methods in io.netty5.handler.timeout with parameters of type IdleStateEvent Modifier and Type Method Description protected void
IdleStateHandler. channelIdle(ChannelHandlerContext ctx, IdleStateEvent evt)
Is called when anIdleStateEvent
should be fired.protected void
ReadTimeoutHandler. channelIdle(ChannelHandlerContext ctx, IdleStateEvent evt)
-