Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for inputFuture (0.51 seconds)

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

       */
      @LazyInit @Nullable ListenableFuture<? extends I> inputFuture;
      @LazyInit @Nullable F function;
    
      AbstractTransformFuture(ListenableFuture<? extends I> inputFuture, F function) {
        this.inputFuture = checkNotNull(inputFuture);
        this.function = checkNotNull(function);
      }
    
      @Override
      @SuppressWarnings({
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 20 18:03:37 GMT 2025
    - 10.8K bytes
    - Click Count (0)
  2. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

       */
      @LazyInit @Nullable ListenableFuture<? extends I> inputFuture;
      @LazyInit @Nullable F function;
    
      AbstractTransformFuture(ListenableFuture<? extends I> inputFuture, F function) {
        this.inputFuture = checkNotNull(inputFuture);
        this.function = checkNotNull(function);
      }
    
      @Override
      @SuppressWarnings({
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 20 18:03:37 GMT 2025
    - 10.8K bytes
    - Click Count (0)
Back to Top