RScheduledFuture<?> |
RScheduledExecutorService.schedule(Runnable command,
long delay,
TimeUnit unit) |
Synchronously schedules a Runnable task for execution asynchronously
after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorService.schedule(Runnable command,
long delay,
TimeUnit unit,
long timeToLive,
TimeUnit ttlUnit) |
Synchronously schedules a Runnable task with defined timeToLive parameter
for execution asynchronously after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorService.schedule(Runnable task,
CronSchedule cronSchedule) |
Synchronously schedules a Runnable task for execution asynchronously
cron schedule object.
|
<V> RScheduledFuture<V> |
RScheduledExecutorService.schedule(Callable<V> callable,
long delay,
TimeUnit unit) |
Synchronously schedules a value-returning task for execution asynchronously
after the given delay .
|
<V> RScheduledFuture<V> |
RScheduledExecutorService.schedule(Callable<V> callable,
long delay,
TimeUnit unit,
long timeToLive,
TimeUnit ttlUnit) |
Synchronously schedules a value-returning task with defined timeToLive parameter
for execution asynchronously after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAsync(Runnable task,
long delay,
TimeUnit unit) |
Schedules a Runnable task for execution asynchronously
after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAsync(Runnable task,
long delay,
TimeUnit unit,
long timeToLive,
TimeUnit ttlUnit) |
Schedules a Runnable task with defined timeToLive parameter
for execution asynchronously after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAsync(Runnable task,
CronSchedule cronSchedule) |
Synchronously schedules a Runnable task for execution asynchronously
cron schedule object.
|
<V> RScheduledFuture<V> |
RScheduledExecutorServiceAsync.scheduleAsync(Callable<V> task,
long delay,
TimeUnit unit) |
Schedules a value-returning task for execution asynchronously
after the given delay .
|
<V> RScheduledFuture<V> |
RScheduledExecutorServiceAsync.scheduleAsync(Callable<V> task,
long delay,
TimeUnit unit,
long timeToLive,
TimeUnit ttlUnit) |
Schedules a value-returning task with defined timeToLive parameter
for execution asynchronously after the given delay .
|
RScheduledFuture<?> |
RScheduledExecutorService.scheduleAtFixedRate(Runnable command,
long initialDelay,
long period,
TimeUnit unit) |
Synchronously schedules a Runnable task for execution asynchronously
after the given initialDelay , and subsequently with the given
period .
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleAtFixedRateAsync(Runnable task,
long initialDelay,
long period,
TimeUnit unit) |
Schedules a Runnable task for execution asynchronously
after the given initialDelay , and subsequently with the given
period .
|
RScheduledFuture<?> |
RScheduledExecutorService.scheduleWithFixedDelay(Runnable command,
long initialDelay,
long delay,
TimeUnit unit) |
Synchronously schedules a Runnable task for execution asynchronously
after the given initialDelay , and subsequently with the given
delay started from the task finishing moment.
|
RScheduledFuture<?> |
RScheduledExecutorServiceAsync.scheduleWithFixedDelayAsync(Runnable task,
long initialDelay,
long delay,
TimeUnit unit) |
Schedules a Runnable task for execution asynchronously
after the given initialDelay , and subsequently with the given
delay started from the task finishing moment.
|