Uses of Interface
org.jboss.netty.util.Timeout
-
Packages that use Timeout Package Description org.jboss.netty.util Utility classes used across multiple packages. -
-
Uses of Timeout in org.jboss.netty.util
Methods in org.jboss.netty.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 org.jboss.netty.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 org.jboss.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)
.
-