IsHealthy() public method

public IsHealthy ( ) : bool
return bool
 /// <summary>
 /// Event handler that gets fired when a worker process is identified as being healthy after start up.
 /// </summary>
 private void WorkerIsHealthy(SIPAppServerWorker worker)
 {
     if (worker.IsHealthy())
     {
         m_sipCallDispatcherFile.UpdateAppServerPriority(worker.AppServerEndpoint, m_healthyPriority);
     }
     else
     {
         logger.Warn("An app server worker was unhealthy after the process initialisation period.");
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Event handler that gets fired when a worker process is identified as being healthy after start up.
 /// </summary>
 private void WorkerIsHealthy(SIPAppServerWorker worker)
 {
     if (worker.IsHealthy())
     {
         m_sipCallDispatcherFile.UpdateAppServerPriority(worker.AppServerEndpoint, m_healthyPriority);
     }
     else
     {
         logger.Warn("An app server worker was unhealthy after the process initialisation period.");
     }
 }