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

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


package org.xnio.channels;

import org.xnio.ChannelListener;

/**
 * A suspendable bidirectional channel.
 */
public interface SuspendableChannel extends CloseableChannel, SuspendableReadChannel, SuspendableWriteChannel {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy