Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AsyncCatchingFuture (0.1 sec)

  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> future = new AsyncCatchingFuture<>(input, exceptionType, fallback);
        input.addListener(future, rejectionPropagatingExecutor(executor, future));
        return future;
      }
    
      /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top