Interface Schedule

  • All Known Subinterfaces:
    Stage
    All Known Implementing Classes:
    Clock, StageClock, Theater

    public interface Schedule
    Timetable for executing timers at their scheduled times. Schedule is thread safe.
    See Also:
    Clock
    • Method Detail

      • timer

        TimerRef timer​(TimerFunction timer)
        Returns an unscheduled TimerRef bound to timer, which can later be used to schedule timer.
      • setTimer

        TimerRef setTimer​(long millis,
                          TimerFunction timer)
        Schedules timer to execute after millis milliseconds have elapsed. Returns a TimerRef that can be used to check the status of, reschedule, and cancel timer.