reactor.ipc.netty.tcp.TcpServer 和 reactor.netty.tcp.TcpServer 有什么区别?
What is the difference between reactor.ipc.netty.tcp.TcpServer and reactor.netty.tcp.TcpServer?
我正在尝试使用 Reactive Netty 实现 TCPServer。
我看到两个 TcpServer class:reactor.ipc.netty.tcp.TcpServer 和 reactor.netty.tcp.TcpServer
两者有什么区别?
我在文档中没有看到对 reactor.ipc.netty.tcp.TcpServer 的引用。
reactor.ipc.netty.tcp.TcpServer
是 Reactor Netty 版本 <= 0 中提供的用于创建 TCP 服务器的 API。7.x
在 >= 0.8.x 的版本中,API 发生了变化,因此您现在拥有 reactor.netty.tcp.TcpServer
Reactor Netty 版本 <= 0.7.x 已停产,因此请考虑使用版本 >= 0.8.x
我正在尝试使用 Reactive Netty 实现 TCPServer。 我看到两个 TcpServer class:reactor.ipc.netty.tcp.TcpServer 和 reactor.netty.tcp.TcpServer
两者有什么区别? 我在文档中没有看到对 reactor.ipc.netty.tcp.TcpServer 的引用。
reactor.ipc.netty.tcp.TcpServer
是 Reactor Netty 版本 <= 0 中提供的用于创建 TCP 服务器的 API。7.x
在 >= 0.8.x 的版本中,API 发生了变化,因此您现在拥有 reactor.netty.tcp.TcpServer
Reactor Netty 版本 <= 0.7.x 已停产,因此请考虑使用版本 >= 0.8.x