summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/nio/channels/GatheringByteChannel.java
blob: 7f0b8bc31eaa2ef838dcb3b4fc7042a37505d04d (plain)
1
2
3
4
5
6
7
package java.nio.channels;
public interface GatheringByteChannel
  extends java.nio.channels.WritableByteChannel
{
public abstract  long write(java.nio.ByteBuffer[] buffers) throws java.io.IOException;
public abstract  long write(java.nio.ByteBuffer[] buffers, int offset, int length) throws java.io.IOException;
}