Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for CatchingFuture (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

          ListenableFuture<? extends V> input,
          Class<X> exceptionType,
          Function<? super X, ? extends V> fallback,
          Executor executor) {
        CatchingFuture<V, X> output = new CatchingFuture<>(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