Exemple #1
0
        public async Task <List <Starship> > ResupplyCalculationFromCache(long distance)
        {
            var starships = await redis.GetAll();

            await this.ResupplyCalculation(distance, starships);

            return(starships);
        }