Package | Description |
---|---|
org.redisson | |
org.redisson.api | |
org.redisson.executor |
Modifier and Type | Method and Description |
---|---|
<V> RScheduledFuture<V> |
RedissonExecutorService.schedule(Callable<V> task,
long delay,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.schedule(Runnable task,
CronSchedule cronSchedule) |
RScheduledFuture<?> |
RedissonExecutorService.schedule(Runnable task,
long delay,
TimeUnit unit) |
<V> RScheduledFuture<V> |
RedissonExecutorService.scheduleAsync(Callable<V> task,
long delay,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleAsync(Runnable task,
CronSchedule cronSchedule) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleAsync(Runnable task,
long delay,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleAtFixedRate(Runnable task,
long initialDelay,
long period,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleAtFixedRateAsync(Runnable task,
long initialDelay,
long period,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleWithFixedDelay(Runnable task,
long initialDelay,
long delay,
TimeUnit unit) |
RScheduledFuture<?> |
RedissonExecutorService.scheduleWithFixedDelayAsync(Runnable task,
long initialDelay,
long delay,
TimeUnit unit) |
Modifier and Type | Method and Description |
---|---|
<V> RScheduledFuture<V> |
RScheduledExecutorService.schedule(Callable<V> callable,
long delay,
TimeUnit unit)
Creates and executes a ScheduledFuture that becomes enabled after the
given delay.
|
RScheduledFuture<?> |
RScheduledExecutorService.schedule(Runnable command,
long delay,
TimeUnit unit)
Creates and executes a one-shot action that becomes enabled
after the given delay.
|
<V> RScheduledFuture<V> |
RScheduledExecutorServiceAsync.scheduleAsync(Callable<V> task,
long delay,
TimeUnit unit)
Creates in async mode and executes a ScheduledFuture that becomes enabled after the
given delay.
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAsync(Runnable task,
CronSchedule cronSchedule)
Creates in async mode and executes a periodic action with cron schedule object.
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAsync(Runnable task,
long delay,
TimeUnit unit)
Creates in async mode and executes a one-shot action that becomes enabled
after the given delay.
|
RScheduledFuture<?> |
RScheduledExecutorService.scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit)
Creates and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the given
period; that is executions will commence after
initialDelay then initialDelay+period , then
initialDelay + 2 * period , and so on. |
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAtFixedRateAsync(Runnable task,
long initialDelay,
long period,
TimeUnit unit)
Creates in async mode and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the given
period.
|
RScheduledFuture<?> |
RScheduledExecutorService.scheduleWithFixedDelay(Runnable command,
long initialDelay,
long delay,
TimeUnit unit)
Creates and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the
given delay between the termination of one execution and the
commencement of the next.
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleWithFixedDelayAsync(Runnable task,
long initialDelay,
long delay,
TimeUnit unit)
Creates in async mode and executes a periodic action that becomes enabled first
after the given initial delay, and subsequently with the
given delay between the termination of one execution and the
commencement of the next.
|
Modifier and Type | Class and Description |
---|---|
class |
RedissonScheduledFuture<V> |
Copyright © 2014–2018 The Redisson Project. All rights reserved.