Does Java's SocketChannel.read() method synchronize the output buffer?
In other words: is there a lock on the ByteBuffer argument passed to the read(ByteBuffer) method in java.nio.channels.SocketChannel (basically any channel). I need to know this so I don't have unnecessary synchronization blocks.