Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AsyncFunction (0.18 sec)

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

          super(inputFuture, function);
        }
    
        @Override
        ListenableFuture<? extends O> doTransform(
            AsyncFunction<? super I, ? extends O> function, @ParametricNullness I input)
            throws Exception {
          ListenableFuture<? extends O> outputFuture = function.apply(input);
          checkNotNull(
              outputFuture,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

      /**
       * Returns a {@code Future} whose result is taken from this {@code Future} or, if this {@code
       * Future} fails with the given {@code exceptionType}, from the result provided by the {@code
       * fallback}. {@link AsyncFunction#apply} is not invoked until the primary input has failed, so if
       * the primary input succeeds, it is never invoked. If, during the invocation of {@code fallback},
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 11 19:08:44 GMT 2023
    - 18.7K bytes
    - Viewed (0)
Back to top