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

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

There is a newer version: 3.8.16.Final
Show newest version

package org.xnio.channels;

import org.xnio.ChannelListener;

/**
 * A stream channel that is a connection between a local and remote endpoint.
 */
public interface ConnectedStreamChannel extends StreamChannel, ConnectedChannel {

    /** {@inheritDoc} */
    ChannelListener.Setter getReadSetter();

    /** {@inheritDoc} */
    ChannelListener.Setter getWriteSetter();

    /** {@inheritDoc} */
    ChannelListener.Setter getCloseSetter();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy