Uses of Interface
org.redisson.api.RScheduledFuture
Packages that use RScheduledFuture
-
Uses of RScheduledFuture in org.redisson
Methods in org.redisson that return RScheduledFutureModifier and TypeMethodDescriptionRedissonExecutorService.schedule(Runnable command, long delay, TimeUnit unit, long ttl, TimeUnit ttlUnit) RedissonExecutorService.schedule(Runnable task, CronSchedule cronSchedule) <V> RScheduledFuture<V><V> RScheduledFuture<V>RedissonExecutorService.schedule(Callable<V> callable, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) RedissonExecutorService.scheduleAsync(Runnable task, long delay, TimeUnit unit) RedissonExecutorService.scheduleAsync(Runnable task, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) RedissonExecutorService.scheduleAsync(Runnable task, CronSchedule cronSchedule) <V> RScheduledFuture<V>RedissonExecutorService.scheduleAsync(Callable<V> task, long delay, TimeUnit unit) <V> RScheduledFuture<V>RedissonExecutorService.scheduleAsync(Callable<V> task, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) RedissonExecutorService.scheduleAtFixedRate(Runnable task, long initialDelay, long period, TimeUnit unit) RedissonExecutorService.scheduleAtFixedRateAsync(Runnable task, long initialDelay, long period, TimeUnit unit) RedissonExecutorService.scheduleWithFixedDelay(Runnable task, long initialDelay, long delay, TimeUnit unit) RedissonExecutorService.scheduleWithFixedDelayAsync(Runnable task, long initialDelay, long delay, TimeUnit unit) -
Uses of RScheduledFuture in org.redisson.api
Methods in org.redisson.api that return RScheduledFutureModifier and TypeMethodDescriptionSynchronously schedules a Runnable task for execution asynchronously after the givendelay.RScheduledExecutorService.schedule(Runnable command, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) Synchronously schedules a Runnable task with definedtimeToLiveparameter for execution asynchronously after the givendelay.RScheduledExecutorService.schedule(Runnable task, CronSchedule cronSchedule) Synchronously schedules a Runnable task for execution asynchronously cron schedule object.<V> RScheduledFuture<V>Synchronously schedules a value-returning task for execution asynchronously after the givendelay.<V> RScheduledFuture<V>RScheduledExecutorService.schedule(Callable<V> callable, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) Synchronously schedules a value-returning task with definedtimeToLiveparameter for execution asynchronously after the givendelay.RScheduledExecutorServiceAsync.scheduleAsync(Runnable task, long delay, TimeUnit unit) Schedules a Runnable task for execution asynchronously after the givendelay.RScheduledExecutorServiceAsync.scheduleAsync(Runnable task, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) Schedules a Runnable task with definedtimeToLiveparameter for execution asynchronously after the givendelay.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 givendelay.<V> RScheduledFuture<V>RScheduledExecutorServiceAsync.scheduleAsync(Callable<V> task, long delay, TimeUnit unit, long timeToLive, TimeUnit ttlUnit) Schedules a value-returning task with definedtimeToLiveparameter for execution asynchronously after the givendelay.RScheduledExecutorService.scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) Synchronously schedules a Runnable task for execution asynchronously after the giveninitialDelay, and subsequently with the givenperiod.RScheduledExecutorServiceAsync.scheduleAtFixedRateAsync(Runnable task, long initialDelay, long period, TimeUnit unit) Schedules a Runnable task for execution asynchronously after the giveninitialDelay, and subsequently with the givenperiod.RScheduledExecutorService.scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) Synchronously schedules a Runnable task for execution asynchronously after the giveninitialDelay, and subsequently with the givendelaystarted from the task finishing moment.RScheduledExecutorServiceAsync.scheduleWithFixedDelayAsync(Runnable task, long initialDelay, long delay, TimeUnit unit) Schedules a Runnable task for execution asynchronously after the giveninitialDelay, and subsequently with the givendelaystarted from the task finishing moment. -
Uses of RScheduledFuture in org.redisson.executor
Classes in org.redisson.executor that implement RScheduledFuture