Java 中的 PubSub EventBus(彗星风格)
我正在尝试构建一个非常简单的事件总线,其中订阅和发布都是在 Java 应用程序中进行的。
然而,总线需要部署在服务器端,而多个订阅者和发布者可以从不同的位置与其交互。
例如,simpleeventbus 和 EventBus 很好,但仅限于使用单个 JVM 时。
我一直在考虑类似 Comet 的东西框架,但我可以直接在 Java 中进行发布/订阅。是否存在这样的框架或库?
或者对此还有什么其他建议?
I am trying to build a very simply event bus, where both subscriptions and publications are made in Java applications.
However, the bus needs to be deployed on server side, while multiple subscribers and publishers can interact with it, from different locations.
So for example, simpleeventbus and EventBus are good but only when working with a single JVM.
I’ve been thinking about a Comet-like framework, but one where I could do the publications/subscriptions directly within Java. Do such frameworks or libraries exist?
Or what other suggestion would there be for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 Oracle 复杂事件处理 (CEP)。 CEP 文档中有一个示例,介绍 Dojo 基金会如何与 Bayeux 协议集成。
check Oracle complex event processing (CEP). There is an example in CEP documentation , how to integrated with Bayeux protocol by the Dojo Foundation.