Uses of Interface
io.netty5.util.Timeout
-
Packages that use Timeout Package Description io.netty5.util Utility classes used across multiple packages. -
-
Uses of Timeout in io.netty5.util
Methods in io.netty5.util that return Timeout Modifier and Type Method Description Timeout
HashedWheelTimer. newTimeout(TimerTask task, long delay, TimeUnit unit)
Timeout
Timer. newTimeout(TimerTask task, long delay, TimeUnit unit)
Schedules the specifiedTimerTask
for one-time execution after the specified delay.Methods in io.netty5.util that return types with arguments of type Timeout Modifier and Type Method Description Set<Timeout>
HashedWheelTimer. stop()
Set<Timeout>
Timer. stop()
Releases all resources acquired by thisTimer
and cancels all tasks which were scheduled but not executed yet.Methods in io.netty5.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)
.
-