Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SimpleForwardingCache (0.06 sec)

  1. guava/src/com/google/common/cache/ForwardingCache.java

       * constructed {@link Cache} as the delegate.
       *
       * @since 10.0
       */
      public abstract static class SimpleForwardingCache<K, V> extends ForwardingCache<K, V> {
        private final Cache<K, V> delegate;
    
        protected SimpleForwardingCache(Cache<K, V> delegate) {
          this.delegate = Preconditions.checkNotNull(delegate);
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top