Is there a blog post/article on delay skipping/vir...
# coroutines
c
Is there a blog post/article on delay skipping/virtual time? I need to share these features with colleagues, and the official documentation is just all over the place. I can't find a real article that explains it.
s
You've probably already seen it but there is some details here in the KDoc, https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-test/
c
Yeah, that's what I meant. There are two paragraphs related to it, in two different parts of the page, and you can't link them specifically. It doesn't say why you'd want to use them, etc
r
Current advice is to avoid all these manual scheduler methods: https://github.com/Kotlin/kotlinx.coroutines/issues/3919
👀 1
c
Very interesting, thanks for the link