Anyone know if there is a kotlin coroutine impleme...
# android
b
Anyone know if there is a kotlin coroutine implementation of java.io.File? EG, non blocking calls for things like createNewFile() and ZipFile(…)
e
there aren't even non-blocking versions of those in java.nio
ZipFile you could probably re-implement on top of AsynchronousByteChannel and Inflater/Deflater, but there isn't a non-blocking file create on most platforms