org.zodiac.sdk.simplenetty.concurrent.DefaultChannelFuture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-nio Show documentation
Show all versions of zodiac-sdk-nio Show documentation
Zodiac SDK NIO2(New Non-Blocking IO)
package org.zodiac.sdk.simplenetty.concurrent;
import org.zodiac.sdk.simplenetty.channel.Channel;
import org.zodiac.sdk.simplenetty.core.EventExecutor;
public class DefaultChannelFuture extends AbstractChannelFuture {
public DefaultChannelFuture(EventExecutor executor, Channel channel, boolean isCancellable) {
super(executor, channel, isCancellable);
}
}