`launchInComposition()`
# compose
r
launchInComposition()
6
g
Thank you Romain !
1
l
for some other use cases,
rememberCoroutineScope
is what you want
☝️ 1
a
yes, the above. If you have something roughly actor-like that you want to run, use
launchInComposition
. If you want to be able to launch jobs as a result of other events and have that scope managed/cleaned up for you, use
rememberCoroutineScope
.