Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for eventuallyClosing (0.23 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        assertFinallyFailsWithException(
            ClosingFuture.eventuallyClosing(
                Futures.<Closeable>immediateFailedFuture(exception), closingExecutor));
      }
    
      public void testEventuallyClosing_cancelledInput() throws Exception {
        assertBecomesCanceled(
            ClosingFuture.eventuallyClosing(
                Futures.<Closeable>immediateCancelledFuture(), closingExecutor));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        assertFinallyFailsWithException(
            ClosingFuture.eventuallyClosing(
                Futures.<Closeable>immediateFailedFuture(exception), closingExecutor));
      }
    
      public void testEventuallyClosing_cancelledInput() throws Exception {
        assertBecomesCanceled(
            ClosingFuture.eventuallyClosing(
                Futures.<Closeable>immediateCancelledFuture(), closingExecutor));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     ClosingFuture#from}.
       */
      @Deprecated
      public static <C extends @Nullable Object & @Nullable AutoCloseable>
          ClosingFuture<C> eventuallyClosing(
              ListenableFuture<C> future, final Executor closingExecutor) {
        checkNotNull(closingExecutor);
        final ClosingFuture<C> closingFuture = new ClosingFuture<>(nonCancellationPropagating(future));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     ClosingFuture#from}.
       */
      @Deprecated
      public static <C extends @Nullable Object & @Nullable AutoCloseable>
          ClosingFuture<C> eventuallyClosing(
              ListenableFuture<C> future, final Executor closingExecutor) {
        checkNotNull(closingExecutor);
        final ClosingFuture<C> closingFuture = new ClosingFuture<>(nonCancellationPropagating(future));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top