ACR_ServerCommunicator.GameWorldManager.OnShutdownServer C# (CSharp) Method

OnShutdownServer() private method

This method is called when a server shutdown request is received.
private OnShutdownServer ( string Message ) : void
Message string Supplies the message text.
return void
        private void OnShutdownServer(string Message)
        {
            EnqueueEvent(new ShutdownServerEvent(Message));

            if (Configuration.RestartWatchdogTimeout != 0)
                StartShutdownWatchdog(Configuration.RestartWatchdogTimeout);
        }