Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

              V4 extends @Nullable Object,
              V5 extends @Nullable Object>
          Combiner5<V1, V2, V3, V4, V5> whenAllSucceed(
              ClosingFuture<V1> future1,
              ClosingFuture<V2> future2,
              ClosingFuture<V3> future3,
              ClosingFuture<V4> future4,
              ClosingFuture<V5> future5) {
        return new Combiner5<>(future1, future2, future3, future4, future5);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

              V4 extends @Nullable Object,
              V5 extends @Nullable Object>
          Combiner5<V1, V2, V3, V4, V5> whenAllSucceed(
              ClosingFuture<V1> future1,
              ClosingFuture<V2> future2,
              ClosingFuture<V3> future3,
              ClosingFuture<V4> future4,
              ClosingFuture<V5> future5) {
        return new Combiner5<>(future1, future2, future3, future4, future5);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top