Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AsyncFunction (0.23 sec)

  1. 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>() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  2. 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>() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K 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);
              }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
Back to top