Esempio n. 1
0
 /// <summary>
 /// Stops the server
 /// </summary>
 /// <param name="waittime">The grace period before the active connections are killed</param>
 public void Stop(TimeSpan waittime)
 {
     Program.DebugConsoleOutput("Base stop");
     base.Stop();
     Program.DebugConsoleOutput("Poll handler stop");
     m_pollhandler.Stop(waittime);
     Program.DebugConsoleOutput("Stop complete");
 }
Esempio n. 2
0
 /// <summary>
 /// Stops the server
 /// </summary>
 /// <param name="waittime">The grace period before the active connections are killed</param>
 public void Stop(TimeSpan waittime)
 {
     base.Stop();
     m_pollhandler.Stop(waittime);
 }