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
Classes in io.netty.util that implement Timeout Modifier and Type Class Description private static class
HashedWheelTimer.HashedWheelTimeout
Fields in io.netty.util with type parameters of type Timeout Modifier and Type Field Description private java.util.Set<Timeout>
HashedWheelTimer.Worker. unprocessedTimeouts
Methods in io.netty.util that return Timeout Modifier and Type Method Description Timeout
HashedWheelTimer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)
Timeout
Timer. newTimeout(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)
Schedules the specifiedTimerTask
for 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 thisTimer
and cancels all tasks which were scheduled but not executed yet.java.util.Set<Timeout>
HashedWheelTimer.Worker. unprocessedTimeouts()
Methods in io.netty.util with parameters of type Timeout Modifier and Type Method Description void
TimerTask. run(Timeout timeout)
Executed after the delay specified withTimer.newTimeout(TimerTask, long, TimeUnit)
.Method parameters in io.netty.util with type arguments of type Timeout Modifier and Type Method Description void
HashedWheelTimer.HashedWheelBucket. clearTimeouts(java.util.Set<Timeout> set)
Clear this bucket and return all not expired / cancelledTimeout
s.
-