中间件(例如 CORBA)- 对象成员的继承。是否可以?

发布于 2024-11-14 07:41:11 字数 707 浏览 2 评论 0原文

考虑一下非常简单的 IDL 代码,它指定 CORBA 中的基本接口和派生接口:(

module test{    
    interface Quote{
        attribute string symbol;
    };

    interface SpecialQuote:Quote{
        attribute string specialSymbol;
    };

    interface QuoteSender{
        void sendQuote(in Quote stock_quote);
    }
};

这假定是 CORBA,但对于其他中间件应该类似)。我感兴趣的是能够:

  1. 创建派生类“SpecialQuote”,将specialSymbol向上转换
  2. 使用“sendQuote”填充
  3. 通过CORBA接口发送的
  4. 为基类“Quote”,在接收端

符号,向下转换为SpecialQuote以检索specialSymbol我很难执行此操作,因为属性本​​质上只是转换为 Java 中的空 setter/getter,而不是它们的原始数据类型。因此需要客户端和服务器端重新实现setter/getter。

简而言之,接口成员的继承是否可以跨中间件实现?如果是 CORBA,有什么建议吗?如果在另一个中间件中,是哪个?

Consider the very simple IDL code that specifies a base and derived interface in CORBA:

module test{    
    interface Quote{
        attribute string symbol;
    };

    interface SpecialQuote:Quote{
        attribute string specialSymbol;
    };

    interface QuoteSender{
        void sendQuote(in Quote stock_quote);
    }
};

(This assumes CORBA but should be similar for other middleware). I am interested in being able to:

  1. create a derived class "SpecialQuote", fill in specialSymbol
  2. upcast to the base class "Quote", fill in symbol
  3. send over CORBA interface using "sendQuote"
  4. on the receiving end, downcast to SpecialQuote to retrieve specialSymbol

I'm having a hard time performing this because the attributes essentially just translate to empty setters/getters in Java rather than their Primitive Data Types. Thus it requires both the client and server ends to re-implement the setters/getters.

So in short, is inheritance of interface members possible across middleware? If so in CORBA, any recommendations? If in another middleware, which one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身仙ぐ女味 2024-11-21 07:41:11

您可以在 CORBA 中完成您要求的所有操作,无需任何修改。 CORBA 就是为了实现这种多态性而设计的。但是,请考虑到在 CORBA 中您有分开的客户端和服务器部分,因此您必须在服务器中实现 get 和 set 方法。对于客户端来说,它只使用 get 和 set 方法来引起对实现对象的远程调用。

You can do everything you ask for in CORBA without any modification. CORBA was designed to achieve this kind of polymorphism. However, take into account that in CORBA you have a separated client and server parts, so you have to implement the get and set methods in the server. As for the client, it only uses the get and set methods that cause a remote call to the implementation object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文