scrooge

Write a thrift server in scala using scrooge and client in python or ruby

冷暖自知 提交于 2019-12-06 04:54:24
问题 I want to write a thrift service implementation in Scala (using Scrooge) but without the use of Finagle, since I couldn't write a ruby/python client for Finagle servers. The problem is that with scrooge the service doesn't seem to implement "Processor" class. Assume I have a thrift definition like this: service TestService { void testFunction(1: string message); } and I generated the scala files using scrooge, when I tried to use the standard implementation of thrift for scala with that to