This implementation is simple and straighforward. It's good. But consider switching from
public bool BatchedRequestsExecuteInParallel { get; set; } = true;
to something like
public int BatchedRequestsConcurrencyLimit { get; set; } = 5;
Originally posted by @sungam3r in #774 (comment)
This implementation is simple and straighforward. It's good. But consider switching from
public bool BatchedRequestsExecuteInParallel { get; set; } = true;to something like
public int BatchedRequestsConcurrencyLimit { get; set; } = 5;Originally posted by @sungam3r in #774 (comment)