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

com.github.ltsopensource.remoting.ChannelFuture Maven / Gradle / Ivy

package com.github.ltsopensource.remoting;

/**
 * @author Robert HG ([email protected]) on 11/4/15.
 */
public interface ChannelFuture {

    boolean isConnected();

    Channel getChannel();

    boolean awaitUninterruptibly(long timeoutMillis);

    boolean isDone();

    Throwable cause();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy