CLOVIS
02/22/2021, 4:23 PMcancelBoundary() (in the last example of https://arrow-kt.io/docs/integrations/kotlinxcoroutines/) ?aballano
02/22/2021, 4:25 PMsimon.vergauwen
02/22/2021, 4:35 PMcoroutineContext.ensureActive() and is being deprecated towards it with the new underlying KotlinX runtime.
It's basically to mark a point of cancellation, so if your suspending code gets cancelled it will stop running at the first cancelBoundary() it encounters.CLOVIS
02/22/2021, 4:51 PM