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

dekans

12/06/2017, 4:57 PM
Silly question 😄 I'd like to
await
a block execution to not block the current thread, but I don't care about the result value. Is there a better practice for it than calling
await()
without using the result?
t

tulio

12/06/2017, 4:58 PM
launch {}
?
d

dekans

12/06/2017, 5:02 PM
I can only
join()
with launch, that would block the thread
Oh noes, I was sure join() was blocking like in C++ :s
3 Views