Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ForwardingCache (0.07 sec)

  1. 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)
  2. 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)
  3. guava/src/com/google/common/cache/LocalCache.java

       * the proxy must be able to behave as the cache itself.
       */
      private static class ManualSerializationProxy<K, V> extends ForwardingCache<K, V>
          implements Serializable {
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 1;
    
        final Strength keyStrength;
        final Strength valueStrength;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
Back to top