Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for nonCancellationPropagating (0.78 sec)

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

         * newFuture is a future that completes after this and all prior tasks are done.
         * oldFuture is the previous task's newFuture.
         * outputFuture is the future we return to the caller, a nonCancellationPropagating taskFuture.
         *
         * newFuture is guaranteed to only complete once all tasks previously submitted to this instance
         * have completed - namely after oldFuture is done, and taskFuture has either completed or been
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.util.concurrent.Futures.inCompletionOrder;
    import static com.google.common.util.concurrent.Futures.lazyTransform;
    import static com.google.common.util.concurrent.Futures.nonCancellationPropagating;
    import static com.google.common.util.concurrent.Futures.scheduleAsync;
    import static com.google.common.util.concurrent.Futures.submit;
    import static com.google.common.util.concurrent.Futures.submitAsync;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.util.concurrent.Futures.inCompletionOrder;
    import static com.google.common.util.concurrent.Futures.lazyTransform;
    import static com.google.common.util.concurrent.Futures.nonCancellationPropagating;
    import static com.google.common.util.concurrent.Futures.scheduleAsync;
    import static com.google.common.util.concurrent.Futures.submit;
    import static com.google.common.util.concurrent.Futures.submitAsync;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.Futures.immediateFuture;
    import static com.google.common.util.concurrent.Futures.nonCancellationPropagating;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static com.google.common.util.concurrent.Platform.restoreInterruptIfIsInterruptedException;
    import static java.util.logging.Level.FINER;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       * the returned future will have no effect on the supplied future.
       *
       * @since 15.0
       */
      public static <V extends @Nullable Object> ListenableFuture<V> nonCancellationPropagating(
          ListenableFuture<V> future) {
        if (future.isDone()) {
          return future;
        }
        NonCancellationPropagatingFuture<V> output = new NonCancellationPropagatingFuture<>(future);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top