- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,这是我在哪里阅读我现在所知道的关于这个问题的所有内容的引用:http://docs.jboss.org/netty/3.2/api/org/jboss/netty/bootstrap/ServerBootstrap.html#bind%28%29
尽管文档没有明确指定,但似乎 ServerBootstrap.bind
是同步的 - 因为它不返回 ChannelFuture
,而是一个 channel 。如果是这种情况,那么我看不到任何使用 ServerBootstrap
进行异步绑定(bind)的方法。类(class)。我错过了什么还是我必须推出自己的解决方案?
最好的祝福
最佳答案
我最终推出了自己的 Bootstrap 实现,并添加了以下内容:
public ChannelFuture bindAsync(final SocketAddress localAddress)
{
if (localAddress == null) {
throw new NullPointerException("localAddress");
}
final BlockingQueue<ChannelFuture> futureQueue =
new LinkedBlockingQueue<ChannelFuture>();
ChannelHandler binder = new Binder(localAddress, futureQueue);
ChannelHandler parentHandler = getParentHandler();
ChannelPipeline bossPipeline = pipeline();
bossPipeline.addLast("binder", binder);
if (parentHandler != null) {
bossPipeline.addLast("userHandler", parentHandler);
}
getFactory().newChannel(bossPipeline);
ChannelFuture future = null;
boolean interrupted = false;
do {
try {
future = futureQueue.poll(Integer.MAX_VALUE, TimeUnit.SECONDS);
} catch (InterruptedException e) {
interrupted = true;
}
} while (future == null);
if (interrupted) {
Thread.currentThread().interrupt();
}
return future;
}
关于asynchronous - Netty ServerBootstrap - 异步绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11166759/
我要复活this一和Manish Maheshwari的回答,尤其是。哪里有文件证明 The handler, which is defined in the AbstractBootstrap is
根据文档 New and noteworthy in 4.0 ,netty4提供了一个新的bootstrap API,文档给出了如下代码示例: public static void main(Stri
我有一个 ServerBootstrap,配置了相当标准的 Http-Codec ChannelInitializer。 关闭时,我的服务器会等待一段宽限期,在此期间它仍然可以处理传入请求。我的服务器
我有一个基于 netty 的应用程序,它监听多个 tcp 端口。所以每个端口都是这样初始化的 bootstrap = new ServerBootstrap(new NioServerSocketCh
首先,这是我在哪里阅读我现在所知道的关于这个问题的所有内容的引用:http://docs.jboss.org/netty/3.2/api/org/jboss/netty/bootstrap/Serve
我目前不知道如何在多个地址/端口上使用 netty 进行监听。我想构建一个服务于特殊应用程序的小型 HTTP 服务器。我需要在多个地址(如 IPv4 和 IPv6)和端口(443/80)上运行它。 对
我正在尝试使用 Netty (4.0.24) 在一个应用程序(一种主要方法)中创建多个服务器(多个 ServerBootstrap)。我看到了这个问题/答案,但它留下了许多 Unresolved 问题
当缓冲区大小增加到超过默认值和/或选择了不正确的覆盖位置时,Netty 似乎会降低上传/下载速度(option 或 childOption ) 在 ServerBootStrap 对象中。当连接具有更
我正在尝试弄清楚如何最好地获取指向由我的服务器引导生成的 channel 的指针。这个想法是我以后可能会做类似的事情 childChannel.write(x); 这是我目前拥有的代码。 Ev
我是 Netty 的新手。我感到困惑的一件事是 ServerBootstrap 有两种方法:继承自 AbstractBootstrap 的处理程序(ChannelHandler c)和 childHa
我是一名优秀的程序员,十分优秀!