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