public interface  io.netty.channel.ChannelFuture extends java.lang.Object implements io.netty.util.concurrent.Future
{
public abstract io.netty.channel.Channel channel();
public abstract io.netty.channel.ChannelFuture addListener(io.netty.util.concurrent.GenericFutureListener);
public abstract transient io.netty.channel.ChannelFuture addListeners(io.netty.util.concurrent.GenericFutureListener[]);
public abstract io.netty.channel.ChannelFuture removeListener(io.netty.util.concurrent.GenericFutureListener);
public abstract transient io.netty.channel.ChannelFuture removeListeners(io.netty.util.concurrent.GenericFutureListener[]);
public abstract io.netty.channel.ChannelFuture sync() throws java.lang.InterruptedException;
public abstract io.netty.channel.ChannelFuture syncUninterruptibly();
public abstract io.netty.channel.ChannelFuture await() throws java.lang.InterruptedException;
public abstract io.netty.channel.ChannelFuture awaitUninterruptibly();
public abstract boolean isVoid();
}