Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

            }
            i++;
          }
        }
        clearSeenExceptions();
        handleAllCompleted();
        /*
         * Null out fields, including some used in handleAllCompleted() above (like
         * `CollectionFuture.values`). This might be a no-op: If this future completed during
         * handleAllCompleted(), they will already have been nulled out. But in the case of
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 16K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

        @RetainedLocalRef List<@Nullable Present<V>> localValues = values;
        if (localValues != null) {
          localValues.set(index, new Present<>(returnValue));
        }
      }
    
      @Override
      final void handleAllCompleted() {
        @RetainedLocalRef List<@Nullable Present<V>> localValues = values;
        if (localValues != null) {
          set(combine(localValues));
        }
      }
    
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/CombinedFuture.java

        this.task = new CallableInterruptibleTask(callable, listenerExecutor);
        init();
      }
    
      @Override
      void collectOneValue(int index, @Nullable Object returnValue) {}
    
      @Override
      void handleAllCompleted() {
        @RetainedLocalRef CombinedFutureInterruptibleTask<?> localTask = task;
        if (localTask != null) {
          localTask.execute();
        }
      }
    
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 6.8K bytes
    - Click Count (0)
Back to Top