parallel processing for routes and regions

This commit is contained in:
Anton Martynenko
2025-11-19 13:01:30 +01:00
parent 7f33567632
commit b66d3a0277
8 changed files with 331 additions and 133 deletions
@@ -3,7 +3,10 @@ namespace SatelliteProvider.Common.Configs;
public class ProcessingConfig
{
public int MaxConcurrentDownloads { get; set; } = 4;
public int MaxConcurrentRegions { get; set; } = 3;
public int DefaultZoomLevel { get; set; } = 20;
public int QueueCapacity { get; set; } = 100;
public int DelayBetweenRequestsMs { get; set; } = 50;
public int SessionTokenReuseCount { get; set; } = 100;
}