Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for runOneIteration (0.32 sec)

  1. 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;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.5K bytes
    - Viewed (0)
  2. 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
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 25.8K bytes
    - Viewed (0)
  3. 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;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 22.5K bytes
    - Viewed (0)
Back to top