Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for AbstractTransformFuture (0.76 seconds)

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

            // This check, unlike all the others, is a volatile read
            || isCancelled()) {
          return;
        }
        inputFuture = null;
    
        // For an explanation of the cases here, see the comments on AbstractTransformFuture.run.
        V sourceResult = null;
        Throwable throwable = null;
        try {
          if (localInputFuture instanceof InternalFutureFailureAccess) {
            throwable =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Sep 11 18:28:58 GMT 2025
    - 9K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

          ListenableFuture<O> transformAsync(
              ListenableFuture<I> input,
              AsyncFunction<? super I, ? extends O> function,
              Executor executor) {
        return AbstractTransformFuture.createAsync(input, function, executor);
      }
    
      /**
       * Returns a new {@code Future} whose result is derived from the result of the given {@code
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 64.2K bytes
    - Click Count (0)
Back to Top