Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newFixedRateSchedule (0.1 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         * @param period the period between successive executions of the task
         * @since 28.0 (but only since 33.4.0 in the Android flavor)
         */
        public static Scheduler newFixedRateSchedule(Duration initialDelay, Duration period) {
          return newFixedRateSchedule(
              toNanosSaturated(initialDelay), toNanosSaturated(period), NANOSECONDS);
        }
    
        /**
         * Returns a {@link Scheduler} that schedules the task using the {@link
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 16:22:21 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top