| Package | Description | 
|---|---|
| io.netty.util.concurrent | Utility classes for concurrent / async tasks. | 
| Modifier and Type | Method and Description | 
|---|---|
| <V> ScheduledFuture<V> | AbstractScheduledEventExecutor. schedule(Callable<V> callable,
        long delay,
        TimeUnit unit) | 
| <V> ScheduledFuture<V> | AbstractEventExecutorGroup. schedule(Callable<V> callable,
        long delay,
        TimeUnit unit) | 
| <V> ScheduledFuture<V> | AbstractEventExecutor. schedule(Callable<V> callable,
        long delay,
        TimeUnit unit) | 
| <V> ScheduledFuture<V> | EventExecutorGroup. schedule(Callable<V> callable,
        long delay,
        TimeUnit unit) | 
| ScheduledFuture<?> | AbstractScheduledEventExecutor. schedule(Runnable command,
        long delay,
        TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutorGroup. schedule(Runnable command,
        long delay,
        TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutor. schedule(Runnable command,
        long delay,
        TimeUnit unit) | 
| ScheduledFuture<?> | EventExecutorGroup. schedule(Runnable command,
        long delay,
        TimeUnit unit) | 
| ScheduledFuture<?> | AbstractScheduledEventExecutor. scheduleAtFixedRate(Runnable command,
                   long initialDelay,
                   long period,
                   TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutorGroup. scheduleAtFixedRate(Runnable command,
                   long initialDelay,
                   long period,
                   TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutor. scheduleAtFixedRate(Runnable command,
                   long initialDelay,
                   long period,
                   TimeUnit unit) | 
| ScheduledFuture<?> | EventExecutorGroup. scheduleAtFixedRate(Runnable command,
                   long initialDelay,
                   long period,
                   TimeUnit unit) | 
| ScheduledFuture<?> | AbstractScheduledEventExecutor. scheduleWithFixedDelay(Runnable command,
                      long initialDelay,
                      long delay,
                      TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutorGroup. scheduleWithFixedDelay(Runnable command,
                      long initialDelay,
                      long delay,
                      TimeUnit unit) | 
| ScheduledFuture<?> | AbstractEventExecutor. scheduleWithFixedDelay(Runnable command,
                      long initialDelay,
                      long delay,
                      TimeUnit unit) | 
| ScheduledFuture<?> | EventExecutorGroup. scheduleWithFixedDelay(Runnable command,
                      long initialDelay,
                      long delay,
                      TimeUnit unit) | 
Copyright © 2008–2015 The Netty Project. All rights reserved.