Uses of Interface
javax.cache.ExpiryPolicy

Packages that use ExpiryPolicy
javax.cache

This package contains the API for JCache. 

 

Uses of ExpiryPolicy in javax.cache
 

Classes in javax.cache that implement ExpiryPolicy
static class ExpiryPolicy.Accessed<K,V>
          A ExpiryPolicy that defines the expiry Configuration.Duration of a Cache Entry based on the last time it was accessed.
static class ExpiryPolicy.Default<K,V>
          The default ExpiryPolicy specifies that Cache Entries won't expire.
static class ExpiryPolicy.Modified<K,V>
          A ExpiryPolicy that defines the expiry Configuration.Duration of a Cache Entry based on the last time it was modified.
 

Fields in javax.cache declared as ExpiryPolicy
protected  ExpiryPolicy<? super K,? super V> MutableConfiguration.expiryPolicy
          The ExpiryPolicy for the Configuration.
 

Methods in javax.cache that return ExpiryPolicy
 ExpiryPolicy<? super K,? super V> MutableConfiguration.getExpiryPolicy()
          Gets the ExpiryPolicy to be used for caches.
 ExpiryPolicy<? super K,? super V> Configuration.getExpiryPolicy()
          Gets the ExpiryPolicy to be used for caches.
 

Methods in javax.cache with parameters of type ExpiryPolicy
 MutableConfiguration<K,V> MutableConfiguration.setExpiryPolicy(ExpiryPolicy<? super K,? super V> policy)
          Set the ExpiryPolicy.
 

Constructors in javax.cache with parameters of type ExpiryPolicy
MutableConfiguration(Iterable<CacheEntryListenerRegistration<? super K,? super V>> cacheEntryListenerRegistrations, CacheLoader<K,? extends V> cacheLoader, CacheWriter<? super K,? super V> cacheWriter, ExpiryPolicy<? super K,? super V> expiryPolicy, boolean isReadThrough, boolean isWriteThrough, boolean isStatisticsEnabled, boolean isStoreByValue, boolean isTransactionsEnabled, IsolationLevel txnIsolationLevel, Mode txnMode)
          Constructs a MutableConfiguration based on a set of parameters.
 



Copyright © 2013. All Rights Reserved.