GameFramework.QueueingThread.TryAddLogoutQueueingAccount C# (CSharp) Method

TryAddLogoutQueueingAccount() private method

private TryAddLogoutQueueingAccount ( string accountId ) : void
accountId string
return void
        internal void TryAddLogoutQueueingAccount(string accountId)
        {
            if (!m_LogoutQueueingAccounts.Contains(accountId) && m_QueueingInfos.ContainsKey(accountId)) {
                m_LogoutQueueingAccounts.Add(accountId);
            }
        }