|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CacheDependency | |
---|---|
com.alachisoft.ncache.runtime.caching | |
com.alachisoft.ncache.runtime.dependencies | |
com.alachisoft.ncache.web.caching | Describes com.alachisoft.ncache.web.caching package The com.alachisoft.nCache.web.caching package provides classes for caching frequently used data in a cluster This includes the Cache class, a dictionary that allows you to store arbitrary data objects, such as hash tables and data sets. |
Uses of CacheDependency in com.alachisoft.ncache.runtime.caching |
---|
Methods in com.alachisoft.ncache.runtime.caching that return CacheDependency | |
---|---|
CacheDependency |
ProviderCacheItem.getDependency()
|
Methods in com.alachisoft.ncache.runtime.caching with parameters of type CacheDependency | |
---|---|
void |
ProviderCacheItem.setDependency(CacheDependency dependency)
|
Uses of CacheDependency in com.alachisoft.ncache.runtime.dependencies |
---|
Subclasses of CacheDependency in com.alachisoft.ncache.runtime.dependencies | |
---|---|
class |
AggregateCacheDependency
Combines multiple dependencies between an item stored in an application's Cache object and an array of CacheDependency objects. |
class |
DBCacheDependency
Establishes a relationship between an item stored in an application's Cache object and either a specific database table. |
class |
ExtensibleDependency
|
class |
FileDependency
Tracks File dependencies to other objects in application's Cache. |
class |
KeyDependency
Tracks Key dependencies to other objects in application's Cache. |
class |
OracleCacheDependency
Establishes a relationship between an item stored in an application's Cache object and either a row in a specific Oracle database table or the results of a Oracle query. |
class |
SqlCacheDependency
Establishes a relationship between an item stored in an application's Cache object and either a row in a specific SQL Server database table or the results of a SQL Server 2005 query. |
Methods in com.alachisoft.ncache.runtime.dependencies that return types with arguments of type CacheDependency | |
---|---|
java.util.List<CacheDependency> |
CacheDependency.getDependencies()
Get Dependencies |
Methods in com.alachisoft.ncache.runtime.dependencies with parameters of type CacheDependency | |
---|---|
void |
AggregateCacheDependency.add(CacheDependency[] dependencies)
Adds an array of CacheDependency objects to the AggregateCacheDependency object. |
Constructors in com.alachisoft.ncache.runtime.dependencies with parameters of type CacheDependency | |
---|---|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys,
CacheDependency dependency)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories),
an array of cache keys, or both for changes. |
|
CacheDependency(java.lang.String[] fileNames,
java.lang.String[] cacheKeys,
CacheDependency dependency,
java.util.Date start)
Initializes a new instance of the CacheDependency class that monitors an array of file paths (to files or directories),
an array of cache keys, or both for changes. |
Uses of CacheDependency in com.alachisoft.ncache.web.caching |
---|
Methods in com.alachisoft.ncache.web.caching that return CacheDependency | |
---|---|
CacheDependency |
CacheItem.getCacheDependency()
The file or cache key dependencies for the item. |
Methods in com.alachisoft.ncache.web.caching with parameters of type CacheDependency | |
---|---|
CacheItemVersion |
Cache.add(java.lang.String key,
java.lang.Object value,
CacheDependency dependency,
java.util.Date absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority)
Adds the specified item to the Cache object with dependencies, expiration and priority policies, and a delegate you can use to notify your application when the inserted item is removed from the Cache. |
boolean |
Cache.addDependency(java.lang.String key,
CacheDependency dep,
boolean isResyncRequired)
Add dependency to the cache item. |
CacheStream |
Cache.getCacheStream(java.lang.String key,
java.lang.String group,
java.lang.String subGroup,
StreamMode streamMode,
CacheDependency dependency,
java.util.Date absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority)
Get Cache Stream based on mode. |
CacheItemVersion |
Cache.insert(java.lang.String key,
java.lang.Object value,
CacheDependency dependency,
java.util.Date absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority)
Inserts an object into the Cache with dependencies and expiration policies. |
void |
CacheItem.setCacheDependency(CacheDependency dependency)
|
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |