Skip to content

Instantly share code, notes, and snippets.

@pulsar256
Created October 7, 2020 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pulsar256/1e9490b1864688a75d7fda449e73ea68 to your computer and use it in GitHub Desktop.
Save pulsar256/1e9490b1864688a75d7fda449e73ea68 to your computer and use it in GitHub Desktop.
throttled_iterator.dart
extension on Iterator {
void throttledForEach(int parallelFutures, ForEachCallback onData,
[ItemProcessedCallback onProgress]) async {
final semaphores = StreamController<int>();
while (parallelFutures-- > 0) {
semaphores.add(1);
}
await for (var _ in semaphores.stream) {
if (!moveNext()) break;
var f = onData(current)
..then((value) => semaphores.add(1))
..catchError((e) {
semaphores.add(1);
throw e;
});
if (onProgress != null) {
f.then((value) => onProgress);
}
await f;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment