Method Init
Init(IDictionary<String, String>, String)
Perform tasks like allocating resources or acquiring connections etc.
Declaration
void Init(IDictionary<string, string> parameters, string cacheName)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IDictionary<System.String, System.String> | parameters | Startup parameters defined in the configuration |
System.String | cacheName | Cache name for which loader is called. |
Examples
Following example sets dataset assigned to this server node
public void Init(IDictionary parameters, string dataset, string cacheId)
{
dataset = dataset;
}