Do we have any replacement for actors yet. Can I a...
# coroutines
s
Do we have any replacement for actors yet. Can I achieve the same using maybe flows of some sort?
o
no,
actor {}
is still the closest without rolling your own thing
you can of course use flows/channels to build your own actor, all
actor {}
is a specially encapsulated and linked
Channel
, that you could set up yourself
s
Alright. I will try to implement something of my own then.