Uses of Interface
io.netty.util.Timeout
-
Packages that use Timeout Package Description io.netty.util Utility classes used across multiple packages. -
-
Uses of Timeout in io.netty.util
Methods in io.netty.util that return Timeout Modifier and Type Method Description TimeoutHashedWheelTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)TimeoutTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)Schedules the specifiedTimerTaskfor one-time execution after the specified delay.Methods in io.netty.util that return types with arguments of type Timeout Modifier and Type Method Description java.util.Set<Timeout>HashedWheelTimer. stop()java.util.Set<Timeout>Timer. stop()Releases all resources acquired by thisTimerand cancels all tasks which were scheduled but not executed yet.Methods in io.netty.util with parameters of type Timeout Modifier and Type Method Description default voidTimerTask. cancelled(Timeout timeout)voidTimerTask. run(Timeout timeout)Executed after the delay specified withTimer.newTimeout(TimerTask, long, TimeUnit).
-