コード例 #1
0
 /// <summary>
 /// Used to start a poller that checks for changes in the cluster client configuration
 /// </summary>
 /// <param name="intervalDelay">Time between pollings, in miliseconds</param>
 internal void StartPoller(int intervalDelay)
 {
     this.poller = new ConfigurationPoller(this.config, intervalDelay);
     this.poller.StartTimer();
 }
コード例 #2
0
 /// <summary>
 /// Used to start a poller that checks for changes in the cluster client configuration
 /// </summary>
 internal void StartPoller()
 {
     this.config.Pool.UpdateLocator(new List <IPEndPoint>(new IPEndPoint[] { this.EndPoint }));
     this.poller = new ConfigurationPoller(this.config);
     this.poller.StartTimer();
 }