java nio2 并发 write 抛出异常WritePendingException
huangriyan
2015-08-11
我在使用NIO2 的多线程进行写的时候,会抛出 WritePendingException 。这个文件有说明
http://docs.oracle.com/javase/7/docs/api/java/nio/channels/AsynchronousByteChannel.html#write%28java.nio.ByteBuffer%29 其中有一句话: WritePendingException - If the channel does not allow more than one write to be outstanding and a previous write has not completed 这个话是不是说 channel 还可以设置为允许多个写?应该怎么设置, 急啊!! |