Method LoadData
LoadData(DatasetIdentifier, String)
Used for get call while data is being loaded into the cache from the persistence store.
Declaration
KeyValuePair<string, string> LoadData(DatasetIdentifier dataSetIdentifier, string key)
Parameters
Type | Name | Description |
---|---|---|
DatasetIdentifier | dataSetIdentifier | |
System.String | key | Keys of the items to be loaded. |
Returns
Type | Description |
---|---|
System.Collections.Generic.KeyValuePair<System.String, System.String> | KeyValuePair of entry returned from the persistence provider. |
LoadData(DatasetIdentifier, ICollection<String>)
Used for getBulk call while data is being loaded into the cache from the persistence store.
Declaration
IDictionary<string, string> LoadData(DatasetIdentifier dataSetIdentifier, ICollection<string> keys)
Parameters
Type | Name | Description |
---|---|---|
DatasetIdentifier | dataSetIdentifier | |
System.Collections.Generic.ICollection<System.String> | keys | Keys of the items to be loaded. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | Dictionary of bulk items returned from the persistence provider. |