Hi All:
The FileChannel Javadoc says "File channels are safe for use by multiple concurrent threads." I take this to mean the FileChannel object is thread-safe (ie., the positioning, etc), but the FileChannel write/read operations require a higher level protocol for thread-safety of their target file. After all, the FileChannel we're using is probably from RandomAccessFile. And RandomAccessFile doesn't guarantee any
thread safety.
Anyone have authoritive information or reference on this?
Tx