Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for AsyncCatchingFuture (0.07 seconds)

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

          ListenableFuture<? extends V> input,
          Class<X> exceptionType,
          AsyncFunction<? super X, ? extends V> fallback,
          Executor executor) {
        AsyncCatchingFuture<V, X> output = new AsyncCatchingFuture<>(input, exceptionType, fallback);
        input.addListener(output, rejectionPropagatingExecutor(executor, output));
        return output;
      }
    
      /*
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Sep 11 18:28:58 GMT 2025
    - 9K bytes
    - Click Count (0)
Back to Top