- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for ForwardingCache (0.06 seconds)
-
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
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Jan 18 02:54:30 GMT 2025 - 3.6K bytes - Click Count (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();
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 2.9K bytes - Click Count (0)