// Generated automatically from io.netty.channel.ChannelFuture for testing purposes package io.netty.channel; import io.netty.channel.Channel; import io.netty.util.concurrent.GenericFutureListener; public interface ChannelFuture extends io.netty.util.concurrent.Future { Channel channel(); ChannelFuture addListener(GenericFutureListener> p0); ChannelFuture addListeners(GenericFutureListener>... p0); ChannelFuture await(); ChannelFuture awaitUninterruptibly(); ChannelFuture removeListener(GenericFutureListener> p0); ChannelFuture removeListeners(GenericFutureListener>... p0); ChannelFuture sync(); ChannelFuture syncUninterruptibly(); boolean isVoid(); }