Class CacheFactory

java.lang.Object
ca.uhn.fhir.sl.cache.CacheFactory

public class CacheFactory extends Object
  • Constructor Details

  • Method Details

    • build

      public static <K, V> Cache<K,V> build(long theTimeoutMillis)
    • build

      public static <K, V> LoadingCache<K,V> build(long theTimeoutMillis, CacheLoader<K,V> theCacheLoader)
    • build

      public static <K, V> Cache<K,V> build(long theTimeoutMillis, long theMaximumSize)
    • build

      public static <K, V> LoadingCache<K,V> build(long theTimeoutMillis, long theMaximumSize, CacheLoader<K,V> cacheLoader)