Class AggregateCacheDependency
Combines multiple dependencies between an item stored in an application's cache object and an array of CacheDependency objects. This class cannot be inherited.
Inherited Members
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
[Obsolete("This API is deprecated and will be removed in a future release. This feature is being retired and will not be continued in future versions.", false)]
public sealed class AggregateCacheDependency : CacheDependency, IDisposable, IBinaryProtocolSerializable
Remarks
The AggregateCacheDependency class monitors a collection of dependency objects so that when any of them changes, the cached item is automatically removed. The objects in the array can be CacheDependency objects, DBCacheDependency objects or any combination of these.
The AggregateCacheDependency class differs from the CacheDependency class as it allows you to associate multiple dependencies of different types with a single cached item. For example, if you create a page that imports data from a SQL Server database table and an XML file, you can create a SqlCacheDependency object to represent a dependency on the database table and a CacheDependency to represent the dependency on the XML file. Rather than making a cache insert method call for each dependency, you can create an instance of the AggregateCacheDependency class with each dependency added to it. You can then use a single Insert call to make the page dependent on the AggregateCacheDependency instance.
Constructors
Name | Description |
---|---|
Aggregate |
Initializes a new instance of the Aggregate |
Methods
Name | Description |
---|---|
Add(Cache |
Adds an array of Cache |