Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for afterDone (0.05 seconds)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      // this would be observable from an afterDone callback
      public void testListenersExecuteImmediately_fromAfterDone() {
        AbstractFuture<String> f =
            new AbstractFuture<String>() {
              @Override
              protected void afterDone() {
                AtomicBoolean ranImmediately = new AtomicBoolean();
                addListener(
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 46.8K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      // this would be observable from an afterDone callback
      public void testListenersExecuteImmediately_fromAfterDone() {
        AbstractFuture<String> f =
            new AbstractFuture<String>() {
              @Override
              protected void afterDone() {
                AtomicBoolean ranImmediately = new AtomicBoolean();
                addListener(
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 46.8K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

          if (localDelegate != null) {
            return "delegate=[" + localDelegate + "]";
          }
          return null;
        }
    
        @Override
        protected void afterDone() {
          delegate = null;
        }
      }
    
      /**
       * Creates a new {@code ListenableFuture} whose value is a list containing the values of all its
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 64.3K bytes
    - Click Count (0)
Back to Top