- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ForwardingCache (0.05 sec)
-
guava/src/com/google/common/cache/ForwardingCache.java
* * @author Charles Fry * @since 10.0 */ @GwtIncompatible public abstract class ForwardingCache<K, V> extends ForwardingObject implements Cache<K, V> { /** Constructor for use by subclasses. */ protected ForwardingCache() {} @Override protected abstract Cache<K, V> delegate(); /** * @since 11.0 */ @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) -
android/guava/src/com/google/common/cache/ForwardingLoadingCache.java
* underlying functionality, so should probably be overridden as a group. * * @author Charles Fry * @since 11.0 */ @GwtIncompatible public abstract class ForwardingLoadingCache<K, V> extends ForwardingCache<K, V> implements LoadingCache<K, V> { /** Constructor for use by subclasses. */ protected ForwardingLoadingCache() {} @Override protected abstract LoadingCache<K, V> delegate();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.9K bytes - Viewed (0)