Class LoaderResult
LoaderResult is used as a return value for LoadNext method provided in ICacheLoader interface provided by user and deployed at cache server.
Inheritance
System.Object
LoaderResult
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class LoaderResult : object
Properties
Name | Description |
---|---|
Data | Data is an OrderedDictionary that contains ProviderCacheItems provided by user while implement LoadNext method of ICacheLoader. |
HasKeyDependency | HasKeyDependency is needed if the chunk of items contains some items that is been dependent on some other items then in this items will be inserted into cache one by one while if this flag is false then key dependency will be ignored and item will be inserted in bulk. |
HasMoreData | HasMoreData is a flag on the basis of which CacheServer decides whether to call LoadNext Method again or not. |
UserContext | UserContext is an additional information that user can use for thier purpose. |