本文整理汇总了Java中net.minecraft.util.io.netty.channel.ChannelFutureListener类的典型用法代码示例。如果您正苦于以下问题:Java ChannelFutureListener类的具体用法?Java ChannelFutureListener怎么用?Java ChannelFutureListener使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ChannelFutureListener类属于net.minecraft.util.io.netty.channel包,在下文中一共展示了ChannelFutureListener类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: b
import net.minecraft.util.io.netty.channel.ChannelFutureListener; //导入依赖的package包/类
private void b(Packet packet, GenericFutureListener[] agenericfuturelistener) {
EnumProtocol enumprotocol = EnumProtocol.a(packet);
EnumProtocol enumprotocol1 = (EnumProtocol) this.m.attr(d).get();
if (enumprotocol1 != enumprotocol) {
i.debug("Disabled auto read");
this.m.config().setAutoRead(false);
}
if (this.m.eventLoop().inEventLoop()) {
if (enumprotocol != enumprotocol1) {
this.a(enumprotocol);
}
this.m.writeAndFlush(packet).addListeners(agenericfuturelistener).addListener(ChannelFutureListener.FIRE_EXCEPTION_ON_FAILURE);
} else {
this.m.eventLoop().execute(new QueuedProtocolSwitch(this, enumprotocol, enumprotocol1, packet, agenericfuturelistener));
}
}