add TODOs

This commit is contained in:
Collin M. Barrett 2019-06-28 18:43:36 -05:00
parent 83b4d77e7e
commit 711a4894b9

View file

@ -21,7 +21,10 @@ public Command(IEnumerable<ListInfo> listInfo)
public class Handler : AsyncRequestHandler<Command>
{
private const int MaxDegreeOfParallelism = 25;
//TODO: sort lists and use domain sharding for concurrent downloads
//TODO: manual/auto-tune degrees of parallelism
private const int MaxDegreeOfParallelism = 5;
private readonly IMediator _mediator;
public Handler(IMediator mediator)