コード例 #1
0
        private bool Fill_cache()
        {
            List <int> response = _sender.Get <List <int> >(_url + _collection_name + "/" + (_current_id + 1) + "/", _token);

            response.ForEach(id => _id_cache.Enqueue(id));

            return(response.Count > 0);
        }