在 OSGi DS 中,当引用的服务的属性更新时如何收到通知?

发布于 2025-01-08 04:27:21 字数 102 浏览 1 评论 0原文

我有一个 OSGi 服务,它通过声明性服务注入来引用其他服务。我希望在引用的服务的属性更新时收到通知。我不希望每次引用服务中的配置发生更改时我的主服务都会停止,因此我已将策略设置为“动态”。

I have an OSGi service that references other services via declarative service injecting them. I would like to be notified when referenced service's properties update. I don't want my main service to stop every time a configuration changes in a referenced service so I've set the policy to "dynamic".

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

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

发布评论

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

评论(1

赠意 2025-01-15 04:27:21

DS 1.2 中有一项新功能。

添加了 reference 元素上的 updated 属性来命名要接收的方法
绑定参考的服务更新。

这将成为即将推出的 Compendium 4.3 规范的一部分。它已在 Equinox 的 DS 实现中实现(DS 捆绑包版本 1.4.0)。您必须在组件描述中使用 http://www.osgi.org/xmlns/scr/v1.2.0 命名空间才能使用 updated 属性。 更新的方法使用与bindunbind方法相同的方法签名。

There is a new feature coming in DS 1.2.

An updated attribute on the reference element is added to name a method to receive
services updates for bound references.

This will be part of the forthcoming Compendium 4.3 spec. It is already implemented in the DS implementation at Equinox (version 1.4.0 of the DS bundle). You must use the http://www.osgi.org/xmlns/scr/v1.2.0 namespace in your component description to use the updated attribute. updated methods use the same method signatures as bind and unbind methods.

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