ACR_ServerCommunicator.GameWorldManager.OnUpdateDatabaseOnlineTimer C# (CSharp) Method

OnUpdateDatabaseOnlineTimer() private method

This timer callback is invoked when it is time to rebroadcast the local server's view of whether the database is online or offline.
private OnUpdateDatabaseOnlineTimer ( object StateInfo ) : void
StateInfo object This argument is unused.
return void
        private void OnUpdateDatabaseOnlineTimer(object StateInfo)
        {
            //
            // Rebroadcast our current view of the database online/offline
            // status to other servers.
            //

            try
            {
                DistributeDatabaseOnlineNotification(DatabaseOnline);
            }
            catch
            {
            }
        }