Anyone know if there is a kotlin coroutine implementation of java.io.File? EG, non blocking calls for things like createNewFile() and ZipFile(…)
e
ephemient
10/14/2021, 7:45 PM
there aren't even non-blocking versions of those in java.nio
ephemient
10/14/2021, 7:45 PM
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