以非阻塞模式将 Thrift Server 集成到现有应用程序中
我需要将 thrift 服务器集成到现有应用程序中,因此我需要将其启动到我的应用程序启动方法中,但是当我调用任何 thrift 服务器类的serve() 方法时,它不会返回并运行服务。 我想知道在应用程序线程中使用 Thrift 服务的方法是什么。
提前致谢
i need to integrate a thrift server into an existing app, so i need to startup it into my application startup method but when i cal serve() method, of any thrift server class, it doesn't return and let run the services.
I'm wondering what is the way to use thrift service into an application thread.
thank in advanced
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 异步 Thrift 或我们使用的 Thrift over http。
You could either use Asynchronous Thrift or Thrift over http which we use.