-
-
Save PatilShreyas/b8c2326e84702cc5f08d22fa6c4cbe4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
suspend fun collect(collector: FlowCollector<List<T>>) = coroutineScope<Unit> { | |
// For storing un-emitted values | |
val values = mutableListOf<T>() | |
// Continue looping after intervals `duration` and emit the items in the collector | |
// and clear the existing items from the `values`. | |
launch { | |
while (true) { | |
delay(duration) | |
collector.emit(values.toList()) | |
values.clear() | |
} | |
} | |
// Collect the upstream flow and add the items to the above `values` list | |
upstream.collect { | |
values.add(it) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment