Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for collectOneValue (0.12 sec)

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

       * cancelled. For details on when this is called, see {@link #collectOneValue}.
       */
      private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) {
        try {
          // We get the result, even if collectOneValue is a no-op, so that we can fail fast.
          collectOneValue(index, getDone(future));
        } catch (ExecutionException e) {
          handleException(e.getCause());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AggregateFuture.java

       * cancelled. For details on when this is called, see {@link #collectOneValue}.
       */
      private void collectValueFromNonCancelledFuture(int index, Future<? extends InputT> future) {
        try {
          // We get the result, even if collectOneValue is a no-op, so that we can fail fast.
          collectOneValue(index, getDone(future));
        } catch (ExecutionException e) {
          handleException(e.getCause());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top