Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newFixedRateSchedule (0.09 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         * @since 33.4.0 (but since 28.0 in the JRE flavor)
         */
        @IgnoreJRERequirement // Users will use this only if they're already using Duration
        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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.7K bytes
    - Viewed (0)
Back to top