All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xnio.channels.WrappedChannel Maven / Gradle / Ivy

There is a newer version: 62
Show newest version

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy