Uses of Class
org.redisson.api.CronSchedule
Packages that use CronSchedule
-
Uses of CronSchedule in org.redisson
Methods in org.redisson with parameters of type CronScheduleModifier and TypeMethodDescriptionRedissonExecutorService.schedule(Runnable task, CronSchedule cronSchedule) RedissonExecutorService.schedule(String id, Runnable task, CronSchedule cronSchedule) RedissonExecutorService.scheduleAsync(Runnable task, CronSchedule cronSchedule) RedissonExecutorService.scheduleAsync(String id, Runnable task, CronSchedule cronSchedule) -
Uses of CronSchedule in org.redisson.api
Methods in org.redisson.api that return CronScheduleModifier and TypeMethodDescriptionstatic CronScheduleCronSchedule.dailyAtHourAndMinute(int hour, int minute) Creates cron expression which schedule task execution every day at the given timestatic CronScheduleCronSchedule.dailyAtHourAndMinute(int hour, int minute, ZoneId zoneId) Creates cron expression which schedule task execution every day at the given time in specified time-zone IDstatic CronScheduleCronSchedule.monthlyOnDayAndHourAndMinute(int dayOfMonth, int hour, int minute) Creates cron expression which schedule task execution every given day of the month at the given timestatic CronScheduleCronSchedule.monthlyOnDayAndHourAndMinute(int dayOfMonth, int hour, int minute, ZoneId zoneId) Creates cron expression which schedule task execution every given day of the month at the given time in specified time-zone ID.static CronScheduleCreates cron expression object with defined expression stringstatic CronScheduleCreates cron expression object with defined expression string and time-zone IDstatic CronScheduleCronSchedule.weeklyOnDayAndHourAndMinute(int hour, int minute, Integer... daysOfWeek) Creates cron expression which schedule task execution every given days of the week at the given time.static CronScheduleCronSchedule.weeklyOnDayAndHourAndMinute(int hour, int minute, ZoneId zoneId, Integer... daysOfWeek) Creates cron expression which schedule task execution every given days of the week at the given time in specified time-zone ID.Methods in org.redisson.api with parameters of type CronScheduleModifier and TypeMethodDescriptionRScheduledExecutorService.schedule(Runnable task, CronSchedule cronSchedule) Synchronously schedules a Runnable task for execution asynchronously cron schedule object.RScheduledExecutorService.schedule(String id, Runnable task, CronSchedule cronSchedule) Synchronously schedules a Runnable task with definedidfor execution asynchronously cron schedule object.RScheduledExecutorServiceAsync.scheduleAsync(Runnable task, CronSchedule cronSchedule) Synchronously schedules a Runnable task for execution asynchronously cron schedule object.RScheduledExecutorServiceAsync.scheduleAsync(String id, Runnable task, CronSchedule cronSchedule) Synchronously schedules a Runnable task with definedidfor execution asynchronously cron schedule object.