public interface Timer
TimerTasks for one-time future execution in a background
 thread.| Modifier and Type | Method and Description | 
|---|---|
| Timeout | newTimeout(TimerTask task,
          long delay,
          TimeUnit unit)Schedules the specified  TimerTaskfor one-time execution after
 the specified delay. | 
| Set<Timeout> | stop()Releases all resources acquired by this  Timerand cancels all
 tasks which were scheduled but not executed yet. | 
Timeout newTimeout(TimerTask task, long delay, TimeUnit unit)
TimerTask for one-time execution after
 the specified delay.IllegalStateException - if this timer has been
                               stopped alreadyCopyright © 2008–2015 The Netty Project. All rights reserved.