/// <summary> /// Checks if need to call the <see cref="IClientHelper.NotifyResultsIncomingStarted"/> /// </summary> private void checkResultIncomingStarted() { // test to see if need to call if (notifyResultIncomingStarted) { // make the call concreteClient.NotifyResultsIncomingStarted(); // mark as called notifyResultIncomingStarted = false; } }
/// <summary> /// Called by the client before the results starts to arrive. /// </summary> public virtual void NotifyResultsIncomingStarted() { helper.NotifyResultsIncomingStarted(); }