Results 4 comments of ATizik

3. Testing There are compile testing libraries out there, for example: https://github.com/tschuchortdev/kotlin-compile-testing That test annotation processors by invoking compilation through K2JVMCompiler class, and it accepts plugin options. So it should...

@togi Would you be interested in a PR containing mobius core converted to pure Kotlin impl without java dependencies? I've done conversion already, every test except logger-related pass. If you're...

@DrewCarlson That could certainly be helpful, thanks! I wonder if you experimented with coroutines on K/N instead of threads? I feel like K/N threads are so foreign to traditional JVM...

[Coroutine](https://github.com/ATizik/mobius/blob/kotlin_common/mobius-core/src/main/java/com/spotify/mobius/runners/CoroutineWorkRunner.kt) version of WorkRunner. Because there are no actors in common module I did this primitive solution. Tests pass with this worker, but I'm not sure if they are extensive...