在 OSGi DS 中,当引用的服务的属性更新时如何收到通知?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DS 1.2 中有一项新功能。
这将成为即将推出的 Compendium 4.3 规范的一部分。它已在 Equinox 的 DS 实现中实现(DS 捆绑包版本 1.4.0)。您必须在组件描述中使用
http://www.osgi.org/xmlns/scr/v1.2.0
命名空间才能使用updated
属性。更新的
方法使用与bind
和unbind
方法相同的方法签名。There is a new feature coming in DS 1.2.
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 theupdated
attribute.updated
methods use the same method signatures asbind
andunbind
methods.