Is anyone using Coroutines for Event Sourcing?
# coroutines
d
Is anyone using Coroutines for Event Sourcing?
l
How are they related?
p
I’d look into how Akka Actors implement it
d
@lukaswelte Like many things in programming Event Sourcing requires async communication between its different contexts. Coroutine Channels are built for that and lend themselves to solving that problem. When you follow the Event Sourcing Rabbit hole you stumble upon, as @pakoito hast astutley pointed out, Actors. Actors can be built out of the fundamental building blocks Coroutines provides, so I aked my question to see if someone is doing that.
👌 1