1

目前,您可以使用 SocketAddress 引导 Netty 来创建通道工厂。为了与 JBoss AS7 紧密集成并使用它的托管套接字绑定,我需要使用已经创建的 ServerSocket 来引导 Netty 通道工厂。那可能吗?我没有找到任何相关的 API。

我正在尝试解决https://community.jboss.org/thread/203485

如果没有,我可以要求将其作为一项功能吗?

4

1 回答 1

0

In 4.x you will be able to create a Netty Channel from an existing NIO Channel. Is that what you are looking for:

https://netty.io/Documentation/New+and+Noteworthy#HAbilitytocreateaChannelfromanexistingJDKsocket

Be aware that Netty 4 is still in Alpha state..

于 2012-10-25T05:28:48.660 回答