Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for immediateFailedFuture (0.06 sec)

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

       * Throwable} wrapped in an {@code ExecutionException}.
       */
      public static <V extends @Nullable Object> ListenableFuture<V> immediateFailedFuture(
          Throwable throwable) {
        checkNotNull(throwable);
        return new ImmediateFailedFuture<>(throwable);
      }
    
      /**
       * Creates a {@code ListenableFuture} which is cancelled immediately upon construction, so that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
Back to top