hfhbd
04/05/2022, 12:01 PMsuspend () -> Unit
, you can create a Continuation
by calling createCoroutine()
. How can you create a CancelableContinuation
?simon.vergauwen
04/05/2022, 12:03 PMsimon.vergauwen
04/05/2022, 12:05 PM@InternalCoroutinesApi
hfhbd
04/05/2022, 12:06 PMsimon.vergauwen
04/05/2022, 12:09 PMinternal
and @InternalCoroutinesApi
based code.simon.vergauwen
04/05/2022, 12:09 PMephemient
04/05/2022, 12:10 PMlaunch(start = CoroutineStart.LAZY) { ... }
will not run the code until the resulting Job
is `.start()`edhfhbd
04/05/2022, 12:34 PMkrzysztof
04/05/2022, 12:45 PM