Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for runOneIteration (0.08 seconds)

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

     * {@link #shutDown} and also a {@link #runOneIteration} method that will be executed periodically.
     *
     * <p>This class uses the {@link ScheduledExecutorService} returned from {@link #executor} to run
     * the {@link #startUp} and {@link #shutDown} methods and also uses that service to schedule the
     * {@link #runOneIteration} that will be executed periodically as specified by its {@link
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 27.7K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

        service.stopAsync().awaitTerminated();
        assertTrue(future.isCancelled());
      }
    
      private class NullService extends AbstractScheduledService {
        @Override
        protected void runOneIteration() throws Exception {}
    
        @Override
        protected Scheduler scheduler() {
          return configuration;
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          return executor;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

        service.stopAsync().awaitTerminated();
        assertTrue(future.isCancelled());
      }
    
      private class NullService extends AbstractScheduledService {
        @Override
        protected void runOneIteration() throws Exception {}
    
        @Override
        protected Scheduler scheduler() {
          return configuration;
        }
    
        @Override
        protected ScheduledExecutorService executor() {
          return executor;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 22.8K bytes
    - Click Count (0)
Back to Top