Package ru.tinkoff.kora.scheduling.jdk
Interface JdkSchedulingExecutor
- All Known Implementing Classes:
DefaultJdkSchedulingExecutor
public interface JdkSchedulingExecutor
-
Method Summary
Modifier and TypeMethodDescriptionscheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit timeUnit) scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit timeUnit)
-
Method Details
-
scheduleWithFixedDelay
ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit timeUnit) -
scheduleAtFixedRate
ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit timeUnit) -
schedule
-