Kotlin's coordination process starts and cancels the coordination process

Builder of collaborative process Both the launch and async builders are used to start new processes launch, which returns a job without any result value async returns a Deferred, which is also a job and can be used await() gets its final result on a Deferred value //Wait for a job: join and await private fun runBlocking1(){ // ...

Posted by jcornett on Wed, 19 Jan 2022 12:59:40 +0100