org.xnio.channels.ByteChannel Maven / Gradle / Ivy
package org.xnio.channels;
import java.nio.channels.GatheringByteChannel;
import java.nio.channels.ScatteringByteChannel;
/**
* An extension of a simple NIO {@link java.nio.channels.ByteChannel} which includes scatter/gather operations.
*
* @author David M. Lloyd
*/
public interface ByteChannel extends java.nio.channels.ByteChannel, GatheringByteChannel, ScatteringByteChannel {
}