Uses of Class
io.netty.handler.timeout.IdleState
-
Packages that use IdleState Package Description io.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
Uses of IdleState in io.netty.handler.timeout
Fields in io.netty.handler.timeout declared as IdleState Modifier and Type Field Description private IdleState
IdleStateEvent. state
Methods in io.netty.handler.timeout that return IdleState Modifier and Type Method Description IdleState
IdleStateEvent. state()
Returns the idle state.static IdleState
IdleState. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IdleState[]
IdleState. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.timeout with parameters of type IdleState Modifier and Type Method Description protected IdleStateEvent
IdleStateHandler. newIdleStateEvent(IdleState state, boolean first)
Returns aIdleStateEvent
.Constructors in io.netty.handler.timeout with parameters of type IdleState Constructor Description DefaultIdleStateEvent(IdleState state, boolean first)
IdleStateEvent(IdleState state, boolean first)
Constructor for sub-classes.
-