io.netty.channel.EventLoop.terminationFuture()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中io.netty.channel.EventLoop.terminationFuture()方法的一些代码示例,展示了EventLoop.terminationFuture()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。EventLoop.terminationFuture()方法的具体详情如下:
包路径:io.netty.channel.EventLoop
类名称:EventLoop
方法名:terminationFuture

EventLoop.terminationFuture介绍

暂无

代码示例

代码示例来源:origin: netty/netty

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: redisson/redisson

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: line/armeria

@Override
public Future<?> terminationFuture() {
  return delegate().terminationFuture();
}

代码示例来源:origin: wildfly/wildfly

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: aadnk/ProtocolLib

@Override
public Future<?> terminationFuture() {
  return getDelegate().terminationFuture();
}

代码示例来源:origin: org.apache.activemq/artemis-jms-client-all

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: apache/activemq-artemis

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

private EventLoop nextChild() throws Exception {
    if (shuttingDown) {
      throw new RejectedExecutionException("shutting down");
    }

    EventLoop loop = idleChildren.poll();
    if (loop == null) {
      if (maxChannels > 0 && activeChildren.size() >= maxChannels) {
        throw tooManyChannels;
      }
      loop = newChild(childArgs);
      loop.terminationFuture().addListener(childTerminationListener);
    }
    activeChildren.add(loop);
    return loop;
  }
}

代码示例来源:origin: apache/tajo

@Test
public void testClientRPCInterference() throws Exception {
 TajoClient client = cluster.newTajoClient();
 TajoClient client2 = cluster.newTajoClient();
 NettyClientBase rpcClient = Whitebox.getInternalState(client, NettyClientBase.class);
 assertNotNull(rpcClient);
 NettyClientBase rpcClient2 = Whitebox.getInternalState(client2, NettyClientBase.class);
 assertNotNull(rpcClient);
 assertNotEquals(rpcClient.getChannel().eventLoop(), rpcClient2.getChannel().eventLoop());
 client.close();
 client2.close();
 rpcClient.getChannel().eventLoop().terminationFuture().sync();
 assertTrue(rpcClient.getChannel().eventLoop().isTerminated());
 rpcClient2.getChannel().eventLoop().terminationFuture().sync();
 assertTrue(rpcClient2.getChannel().eventLoop().isTerminated());
}

相关文章