Is there a way to communicate from one component t...
# coroutines
l
Is there a way to communicate from one component to another one (both having different lifecycles), through coroutines, a frequently updating
Int
value (progress of an upload I get from a callback) without incurring memory allocation nor autoboxing on each update? Note that I'm fine bridging the communication using a global property or a property on a singleton (an
object
)
1
d
Isn't that an
actor
, and passing its
SendChannel
to the updater?