Uses of Class
org.redisson.api.CronSchedule
-
Packages that use CronSchedule Package Description org.redisson org.redisson.api -
-
Uses of CronSchedule in org.redisson
Methods in org.redisson with parameters of type CronSchedule Modifier and Type Method Description RScheduledFuture<?>
RedissonExecutorService. schedule(Runnable task, CronSchedule cronSchedule)
RScheduledFuture<?>
RedissonExecutorService. scheduleAsync(Runnable task, CronSchedule cronSchedule)
-
Uses of CronSchedule in org.redisson.api
Methods in org.redisson.api that return CronSchedule Modifier and Type Method Description static CronSchedule
CronSchedule. dailyAtHourAndMinute(int hour, int minute)
Creates cron expression which schedule task execution every day at the given timestatic CronSchedule
CronSchedule. monthlyOnDayAndHourAndMinute(int dayOfMonth, int hour, int minute)
Creates cron expression which schedule task execution every given day of the month at the given timestatic CronSchedule
CronSchedule. of(String expression)
Creates cron expression object with defined expression stringstatic CronSchedule
CronSchedule. weeklyOnDayAndHourAndMinute(int hour, int minute, Integer... daysOfWeek)
Creates cron expression which schedule task execution every given days of the week at the given time.Methods in org.redisson.api with parameters of type CronSchedule Modifier and Type Method Description RScheduledFuture<?>
RScheduledExecutorService. schedule(Runnable task, CronSchedule cronSchedule)
Synchronously schedules a Runnable task for execution asynchronously cron schedule object.RScheduledFuture<?>
RScheduledExecutorServiceAsync. scheduleAsync(Runnable task, CronSchedule cronSchedule)
Synchronously schedules a Runnable task for execution asynchronously cron schedule object.
-