Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for listenablefuture (0.15 seconds)

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

       *   <li>Return a {@code ClosingFuture}. To turn a {@link ListenableFuture} into a {@code
       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

            CacheLoader<? super K, V> loader)
            throws ExecutionException {
          ListenableFuture<V> loadingFuture = loadingValueReference.loadFuture(key, loader);
          return getAndRecordStats(key, hash, loadingValueReference, loadingFuture);
        }
    
        ListenableFuture<V> loadAsync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  3. guava/src/com/google/common/cache/LocalCache.java

            CacheLoader<? super K, V> loader)
            throws ExecutionException {
          ListenableFuture<V> loadingFuture = loadingValueReference.loadFuture(key, loader);
          return getAndRecordStats(key, hash, loadingValueReference, loadingFuture);
        }
    
        ListenableFuture<V> loadAsync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
Back to Top