Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for callWithTimeout (0.15 sec)

  1. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * @since 28.0
       */
      @CanIgnoreReturnValue
      @ParametricNullness
      default <T extends @Nullable Object> T callWithTimeout(Callable<T> callable, Duration timeout)
          throws TimeoutException, InterruptedException, ExecutionException {
        return callWithTimeout(callable, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top