Skip to content Skip to sidebar Skip to footer

Android Non-blocking File I/o?

I'm currently writing an async i/o library for Java that has a very similar API to Node.js. I could do the socket part with nio, but there seems to be no FileChannel that extends S

Solution 1:

Is there an equivalent class on Android to do non-blocking file io?

Other than your wrapping traditional I/O in a background thread, no, sorry.

Post a Comment for "Android Non-blocking File I/o?"