I've got an Angular 2 app, which fetches a varying number of ids from a server, and then, for each id makes another REST call in a forkJoin
.
However, the amount of ids can go up to a few hundreds, which might be problematic when suddenly making several hundred REST calls in parallel.
Is there a way of limiting the number of parallel calls when using RxJs and the forkJoin
operator?