Are composition side-effects guaranteed to never r...
# compose
a
Are composition side-effects guaranteed to never run concurrently with each other?
z
Side effects are guaranteed to be ran on the main thread. I believe they also have strong ordering guarantees between both siblings and nested effects. So mostly yes to your question, but launched effects will be started separately but may of course run concurrently because coroutines.
a
Understood, thanks