- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for SimpleForwardingCache (0.09 sec)
-
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 3.6K bytes - Viewed (0)