Aura.Channel.ChannelServer.ShutdownTimerDone C# (CSharp) Method

ShutdownTimerDone() private method

private ShutdownTimerDone ( object timer ) : void
timer object
return void
		private void ShutdownTimerDone(object timer)
		{
			((Timer)timer).Dispose();

			// Kill clients
			this.KillConnectedClients();

			// Save global variables
			this.Database.SaveVars("Aura System", 0, this.ScriptManager.GlobalVars.Perm);

			CliUtil.Exit(0, false);
		}