Пример #1
0
 /// <summary>
 /// This method sets the next poll time based on the current state and the number of poll attempts.
 /// </summary>
 public void NegotiationPollSetNextTime()
 {
     NegotiationStrategy.SetNextPollTime(NegotiationPollSchedule, State, mCurrentMasterPollAttempts);
 }
Пример #2
0
 /// <summary>
 /// Checks whether the poll attempts have been exceeded.
 /// </summary>
 /// <returns>Returns true if the poll limit has been exceeded.</returns>
 public bool MasterPollAttemptsExceeded()
 {
     return(NegotiationStrategy.PollAttemptsExceeded(State, mCurrentMasterPollAttempts));
 }