使用 Scala 实现类似于 JMS 的队列

发布于 2024-10-27 10:22:51 字数 36 浏览 0 评论 0原文

是否可以使用Akka框架在Scala中实现JMS消息队列?

Is it possible to implement a JMS message queue in Scala using the Akka framework?

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

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

发布评论

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

评论(2

櫻之舞 2024-11-03 10:22:51

它看起来像来自这里

从 0.7 版本开始,Akka 提供了一个新的
让演员发送和
接收各种各样的消息
协议和 API。此外
原生 Scala actor API,actor 可以
现在与其他人交换消息
包含大量协议的系统
以及 HTTP、SOAP、TCP、FTP 等 API,
SMTP 或JMS,仅举几例。在
时刻,大约 80 个协议和
支持 API。这个新功能
由Akka的Camel模块提供。

(我的重点)

It looks like it from here:

Since version 0.7, Akka offers a new
feature that let actors send and
receive messages over a great variety
of protocols and APIs. In addition to
the native Scala actor API, actors can
now exchange messages with other
systems over large number of protcols
and APIs such as HTTP, SOAP, TCP, FTP,
SMTP or JMS, to mention a few. At the
moment, approximately 80 protocols and
APIs are supported. This new feature
is provided by Akka's Camel module.

(my emphasis)

初心 2024-11-03 10:22:51

是的,大概是。您所需要的只是支持 JMS 接口的能力,并且由于 Scala 可以实现 Java 接口并扩展 Java 类......

Yes, presumably. All you'd need is the ability to support the JMS interfaces, and since Scala can implement Java interfaces and extend Java classes...

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