Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for stopAsync (0.08 sec)

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

      @Override
      public final Service startAsync() {
        delegate.startAsync();
        return this;
      }
    
      /** @since 15.0 */
      @CanIgnoreReturnValue
      @Override
      public final Service stopAsync() {
        delegate.stopAsync();
        return this;
      }
    
      /** @since 15.0 */
      @Override
      public final void awaitRunning() {
        delegate.awaitRunning();
      }
    
      /** @since 15.0 */
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

        state.awaitHealthy(timeout, unit);
      }
    
      /**
       * Initiates service {@linkplain Service#stopAsync shutdown} if necessary on all the services
       * being managed.
       *
       * @return this
       */
      @CanIgnoreReturnValue
      public ServiceManager stopAsync() {
        for (Service service : services) {
          service.stopAsync();
        }
        return this;
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ServiceManager.java

        state.awaitHealthy(timeout, unit);
      }
    
      /**
       * Initiates service {@linkplain Service#stopAsync shutdown} if necessary on all the services
       * being managed.
       *
       * @return this
       */
      @CanIgnoreReturnValue
      public ServiceManager stopAsync() {
        for (Service service : services) {
          service.stopAsync();
        }
        return this;
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

      @Override
      public final Service startAsync() {
        delegate.startAsync();
        return this;
      }
    
      /** @since 15.0 */
      @CanIgnoreReturnValue
      @Override
      public final Service stopAsync() {
        delegate.stopAsync();
        return this;
      }
    
      /** @since 15.0 */
      @Override
      public final void awaitRunning() {
        delegate.awaitRunning();
      }
    
      /** @since 28.0 */
      @Override
    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