I am working on a classical consumer-producer prob...
# announcements
p
I am working on a classical consumer-producer problem: one coroutine loads information that should be consumed by multiple coroutine consumers. I figured out that Flow is not adequate since it can only be collected by one receiver (?!). So basically there’s only Channel left. Unfortunately there is no such thing as. “channel.buffered(chunksize=1000).receive…()” (or is there?). Are there any other data structures I am missing that are a better fit for my issue?