https://kotlinlang.org logo
#coroutines
Title
# coroutines
d

Dias

04/19/2019, 9:20 AM
do I have to join() coroutine after it’s finished? What happens if I don’t?
o

octylFractal

04/19/2019, 9:23 AM
no,
join
is just if you want to wait for it to finish somewhere
otherwise, it will simply GC out of existence
d

Dias

04/19/2019, 11:22 AM
oh I see, thanks 👍
7 Views