Uses of Interface
ch.ivyteam.ivy.data.cache.IDataCacheGroup
-
Packages that use IDataCacheGroup Package Description ch.ivyteam.ivy.data.cache TheIDataCache
API allows caching of data per session, application and environment. -
-
Uses of IDataCacheGroup in ch.ivyteam.ivy.data.cache
Methods in ch.ivyteam.ivy.data.cache that return IDataCacheGroup Modifier and Type Method Description IDataCacheGroup
IDataCache. getGroup(String groupname)
Returns the group with the given nameMethods in ch.ivyteam.ivy.data.cache that return types with arguments of type IDataCacheGroup Modifier and Type Method Description List<IDataCacheGroup>
IDataCache. getGroups()
Returns all cache groupsMethods in ch.ivyteam.ivy.data.cache with parameters of type IDataCacheGroup Modifier and Type Method Description List<IDataCacheEntry>
IDataCache. getEntries(IDataCacheGroup group)
Returns a list of all cache entries of the given groupvoid
IDataCache. invalidateEntry(IDataCacheGroup group, IDataCacheEntry entry)
Invalidates the data cache entry with .void
IDataCache. invalidateGroup(IDataCacheGroup group)
Invalidates the group with the given name and all the cache entries within this cache group
-