I'm just getting started with Kotlin 1.5.0-RC (as ...
# getting-started
r
I'm just getting started with Kotlin 1.5.0-RC (as well as the preview Kotlin Plugin for IntelliJ) and I read somewhere (can't find it anymore) that Kotlin / Kotlin Plugin / IntelliJ now properly recognize non-blocking IO from Java (java.nio). I'm currently trying to read the contents of a File to a string in a
suspend fun
, but I still get "inappropriate blocking method call", no matter which NIO method I use. What am I missing here?