如何实现 forkjoin 目前在 for 循环中完成的一系列操作
我有一个发件人列表,我必须并行地单独发送邮件。目前,我正在迭代列表构建正文(因为它对于不同的人来说是不同的),然后发送它们。我该如何使用 forkjoin 来实现这一点。我尝试使用 recusiveAction 但我猜它仅适用于递归任务。
互联网上的所有示例都是使用 RecursiveAction 实现的。有没有其他类可以实现这个。
I have a list of senders for them I have to parallely send mails individually.Currently I am iterating over the list construct the body (as it is different for different people) and then sending them. How can I use forkjoin for this. I tried using recusiveAction but I guess its only for recursive tasks.
All the examples available in internet are implemented with RecursiveAction. Is there any other class with which I can implement this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ServiceExecutors 可以很好地解决这个问题。它们带有 Java。
ServiceExecutors work nicely for this. They come with Java.
我浏览后得到了一个更好的答案:
使用此代码,您将能够获得响应以及引发的任何异常。
I browsed I got a better answer:
With this code, you will be able to get the response and also any exceptions that are thrown.