ACR_ServerCommunicator.GameWorldManager.DistributeDatabaseOnlineNotification C# (CSharp) Method

DistributeDatabaseOnlineNotification() private method

Send a direct, database online/offline status update to all online servers. Note that the update is sent as an unreliable datagram so it is possible that it may never arrive, or may arrive in the wrong order, etc. The notification is purely advisory.
private DistributeDatabaseOnlineNotification ( bool Online ) : void
Online bool Supplies true if the database is considered to /// be online.
return void
        private void DistributeDatabaseOnlineNotification(bool Online)
        {
            ServerNetworkManager NetworkManager = ACR_ServerCommunicator.GetNetworkManager();

            lock (this)
            {
                foreach (GameServer Server in Servers)
                {
                    if (!Server.Online)
                        continue;

                    NetworkManager.SendNotifyMessageDatabaseStatus(Server, DatabaseOnline);
                }
            }
        }