Interface Interval

  • All Known Implementing Classes:
    VertxInterval

    public interface Interval
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long startAt​(long delay, long duration, io.vertx.core.Handler<Long> actuator)
      Start schedule at
      long startAt​(long duration, io.vertx.core.Handler<Long> actuator)
      Start schedule from now without delay
      long startAt​(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 begin
        duration - repeat for each duration
        actuator - Executor
      • startAt

        long startAt​(long duration,
                     io.vertx.core.Handler<Long> actuator)
        Start schedule from now without delay
        Parameters:
        duration - repeat for each duration
        actuator - Executor
      • startAt

        long startAt​(io.vertx.core.Handler<Long> actuator)
        Start schedule once
        Parameters:
        actuator - Executor