Uses of Interface
org.openhab.core.scheduler.SchedulerRunnable
Packages that use SchedulerRunnable
- 
Uses of SchedulerRunnable in org.openhab.core.schedulerMethods in org.openhab.core.scheduler with parameters of type SchedulerRunnableModifier and TypeMethodDescriptiondefault ScheduledCompletableFuture<@Nullable Void> Scheduler.at(SchedulerRunnable runnable, Instant instant) Return aScheduledCompletableFuturethat resolves at the given epochTime and runs the runnable.CronScheduler.schedule(SchedulerRunnable runnable, String cronExpression) Schedule a runnable to be executed for the give cron expression (SeeCronJob).<T> ScheduledCompletableFuture<T> PeriodicScheduler.schedule(SchedulerRunnable runnable, Duration... delays) Schedule a runnable to be executed in definitely at the given delays.<T> ScheduledCompletableFuture<T> Scheduler.schedule(SchedulerRunnable callable, @Nullable String identifier, TemporalAdjuster temporalAdjuster) Schedules the callable once or repeating using the temporalAdjuster to determine the time the callable should run.<T> ScheduledCompletableFuture<T> Scheduler.schedule(SchedulerRunnable callable, TemporalAdjuster temporalAdjuster) Schedules the callable once or repeating using the temporalAdjuster to determine the time the callable should run.