org.xnio.channels.WrappedChannel Maven / Gradle / Ivy
package org.xnio.channels;
import java.nio.channels.Channel;
/**
* A wrapped channel.
*
* @param the wrapped channel type
* @author David M. Lloyd
*/
public interface WrappedChannel {
/**
* Get the channel which is wrapped by this object.
*
* @return the wrapped channel
*/
C getChannel();
}