public void FindAndLookupPlayers()
        {
            if (_queue.Count > QUEUE_SIZE_BEFORE_LOOKUPS)
            {
                BatchLookup();
            }

            long steamId = _queue.Pop();

            if (steamId > -1)
            {
                FindFriends(steamId);
            }
        }