I implemented a multi-file gatherer input stream which is able to read and combine data from previously scattered file segments. However, the current version uses RandomAccessFile along with fixed size ExecutorService, and with lots of CPU overhead. I'd like to avoid these I/O threads and perform a single threaded Selector based approach. Unfortunately, FileChannel (or JDK7's Path.newByteChannel()) is not selectable. Is there a way to do this data-gather in an NIO way?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Very late answer but why does it have to be Selectable? It has scattering reads and gathering writes, and files are always ready for reading and writing. So why Selectable? |
|||
|
|