Thanks Mark for the Reply!!!!!!!

On Thu, Sep 20, 2012 at 11:34 PM, Mark Slee <[email protected]> wrote:

> This is not supported, Thrift does not implement multiple inheritance.
> ________________________________________
> From: Tarun Goyal [[email protected]]
> Sent: Wednesday, September 19, 2012 11:14 PM
> To: [email protected]
> Subject: How to extend multiple Services?
>
> Hey,
>
> How to extend multiple services in one service?
>
> service IBase{
>
>     void ping(),
>     int test(),
>
> }
>
> service ID1 extends IBase{
>     int test(),
>     void add(),
>
>
> }
> service ID2 extends IBase{
> int test(),
> void multiply(),
> }
>
>
> service ID3 extends ID1, extends ID2 {
> int test(),
>
> }
>
>
> When i am compiling it. It is throwing errors. Cant we extend multiple
> services?
>
>
>
> Thanks,
> Tarun
>

Reply via email to