Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AsyncFunction (0.12 sec)

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

            }
          };
    
      private static <V> AsyncFunction<V, V> asyncIdentity() {
        return new AsyncFunction<V, V>() {
          @Override
          public ListenableFuture<V> apply(V input) {
            return immediateFuture(input);
          }
        };
      }
    
      private static <I, O> AsyncFunction<I, O> tagged(
          final String toString, final AsyncFunction<I, O> function) {
        return new AsyncFunction<I, O>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            }
          };
    
      private static <V> AsyncFunction<V, V> asyncIdentity() {
        return new AsyncFunction<V, V>() {
          @Override
          public ListenableFuture<V> apply(V input) {
            return immediateFuture(input);
          }
        };
      }
    
      private static <I, O> AsyncFunction<I, O> tagged(
          final String toString, final AsyncFunction<I, O> function) {
        return new AsyncFunction<I, O>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          Class<X> exceptionType,
          final AsyncClosingFunction<? super X, W> fallback,
          Executor executor) {
        checkNotNull(fallback);
        AsyncFunction<X, W> asyncFunction =
            new AsyncFunction<X, W>() {
              @Override
              public ListenableFuture<W> apply(X exception) throws Exception {
                return closeables.applyAsyncClosingFunction(fallback, exception);
              }
    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

          Class<X> exceptionType,
          final AsyncClosingFunction<? super X, W> fallback,
          Executor executor) {
        checkNotNull(fallback);
        AsyncFunction<X, W> asyncFunction =
            new AsyncFunction<X, W>() {
              @Override
              public ListenableFuture<W> apply(X exception) throws Exception {
                return closeables.applyAsyncClosingFunction(fallback, exception);
              }
    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