Uses of Interface
ch.ivyteam.ivy.data.cache.IDataCacheEntry
-
Packages that use IDataCacheEntry Package Description ch.ivyteam.ivy.data.cache TheIDataCache
API allows caching of data per session, application and environment. -
-
Uses of IDataCacheEntry in ch.ivyteam.ivy.data.cache
Methods in ch.ivyteam.ivy.data.cache that return IDataCacheEntry Modifier and Type Method Description IDataCacheEntry
IDataCache. getEntry(String groupIdentifier, String identifier)
Returns the cache entry corresponding to the given group name and identifierIDataCacheEntry
IDataCacheGroup. getEntry(String identifier)
Returns the entry with the given identifier.IDataCacheEntry
IDataCache. setEntry(String groupIdentifier, String identifier, int lifetime, Object value)
If not already existing, creates a new cache entry with the given identifier, lifetime and value.IDataCacheEntry
IDataCache. setEntry(String groupIdentifier, String identifier, Object value)
If not already existing, creates a new cache entry with the given identifier and value.Methods in ch.ivyteam.ivy.data.cache that return types with arguments of type IDataCacheEntry Modifier and Type Method Description List<IDataCacheEntry>
IDataCache. getEntries()
Returns a list with all entries of all groupsList<IDataCacheEntry>
IDataCache. getEntries(IDataCacheGroup group)
Returns a list of all cache entries of the given groupList<IDataCacheEntry>
IDataCache. getEntries(String groupIdentifier)
Returns a list of all cache entries of the given groupList<IDataCacheEntry>
IDataCacheGroup. getEntries()
Returns an unsorted list with all cache entries of this cache groupMethods in ch.ivyteam.ivy.data.cache with parameters of type IDataCacheEntry Modifier and Type Method Description void
IDataCache. invalidateEntry(IDataCacheGroup group, IDataCacheEntry entry)
Invalidates the data cache entry with .void
IDataCacheGroup. invalidateEntry(IDataCacheEntry entry)
Invalidates the given cache entry.
-