Integrate Thrift Server into existing app in non blocking mode
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
You could either use Asynchronous Thrift or Thrift over http which we use.
精彩评论