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