使用 Java API 的 Akka-Camel 集成模块示例
有人可以给我指出一个使用 Akka Camel 集成模块的示例 - 使用 Java API。我有一个用例,其中调用 REST 服务,该服务将并行启动一些 Akka Actor 来处理请求,然后每个 Actor 将部分结果推送到 Web 浏览器(Comet 样式)。我在这里看到了一个例子,但不幸的是我没有知道 scala 并且我想在 Java 中看到它。
有人把这个例子翻译成Java吗?
谢谢!
Can someone point me to an example of using Akka Camel integration module - using the Java API. I have a use case where a REST service is called that would start some Akka Actors in parallel to process the request and then each would push partial results to the web browser (Comet style). I saw one example here but unfortunately I don't know scala and I would like to see this in Java.
Has anyone translated this examples into Java?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Akka Camel 的大多数示例都显示代码的 Scala 版本,然后显示 Java 版本: http://akka.io/docs/akka-modules/1.2/modules/camel.html
Most of the examples for Akka Camel show both the Scala version of the code, and then the Java version: http://akka.io/docs/akka-modules/1.2/modules/camel.html
现在,您可以从 Akka 网站上获取 Typesafe 反应式平台 的所有教程、示例。 Akka Java 和 Scala 的最新文档始终可用 此处。它包含所有内容,包括 Akka 扩展,例如 Akka Camel。
此外,如果您不想使用Typesafe反应式平台应用程序,您可以浏览Git-Hub Akka Samples
PS:不幸的是,我没有足够的声誉来添加超过 2 个链接到我的答案......
Nowadays, you can get all tutorials, samples with Typesafe reactive platform which you can get from Akka website. The latest documentation for Akka Java and Scala is always available here. It contains everything, including Akka Extensions like Akka Camel.
Furthermore, if you don't want to use Typesafe reactive platform application you can browse Git-Hub Akka Samples
PS: unfortunately I don't have enough reputation to add more than 2 links to my answer...