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