Package io.vertx.up.uca.job.timer
Interface Interval
-
- All Known Implementing Classes:
VertxInterval
public interface Interval
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longstartAt(long delay, long duration, io.vertx.core.Handler<Long> actuator)Start schedule atlongstartAt(long duration, io.vertx.core.Handler<Long> actuator)Start schedule from now without delaylongstartAt(io.vertx.core.Handler<Long> actuator)Start schedule once
-
-
-
Method Detail
-
startAt
long startAt(long delay, long duration, io.vertx.core.Handler<Long> actuator)Start schedule at- Parameters:
delay- delay ms to beginduration- repeat for each durationactuator- Executor
-
startAt
long startAt(long duration, io.vertx.core.Handler<Long> actuator)Start schedule from now without delay- Parameters:
duration- repeat for each durationactuator- Executor
-
startAt
long startAt(io.vertx.core.Handler<Long> actuator)
Start schedule once- Parameters:
actuator- Executor
-
-