Mark
12/07/2017, 3:41 AMkotlinx-corountines-core
imported through my common module and I have been successfully using it transitively in the JVM project (a little TornadoFx visualizer) to do a bit of processing off of the main thread. However, I am now trying to speed up some of the common logic and I've just started getting an unresolved reference to kotlinx
, runBlocking
and launch
when compiling the common module. Is there something special I need to do in the Gradle imports to ensure that I am getting an implementation of coroutines that is compatible with Kotlin common? Some other trick that I am missing?gildor
12/07/2017, 3:43 AMgildor
12/07/2017, 3:44 AMMark
12/07/2017, 3:44 AMgildor
12/07/2017, 3:45 AMprocessing off of the main threadBecause for example this is just impossible for JS which is single-thread language
Mark
12/07/2017, 3:45 AMgildor
12/07/2017, 3:46 AMMark
12/07/2017, 3:50 AMgildor
12/07/2017, 4:10 AMgildor
12/07/2017, 4:11 AMMark
12/08/2017, 3:42 AM