Hi all,
I wonder if it is possible to have a thrift server waiting for requests from
different services (e.g. in the sense of multiple thrift idl service
definition).
To make it more obvious: Is it possible to do something that is similar to
this:

CalculatorHandler handler = new CalculatorHandler();
Calculator.Processor calcultorProcessor = new Calculator.Processor(handler);

CalendarHandler handler = new CalendarHandler();
Calendar.Processor calendarProcessor = new Calendar.Processor(handler);

and assign them both to a single thrift server instance?

Thanks for any hints.

Regards, Michael.

Reply via email to