So I'm fiddling around with `Channels` and I'm try...
# coroutines
u
So I'm fiddling around with
Channels
and I'm trying to emulate an event bus kind of system. To that end I extended the
actor
example from the docs by adding a
Subscribe
and
Unsubscribe
message which carry a
Channel
parameter that is later used to publish updates from within the actor. Does the following snippet make sense?