使用 ExecutorService 产生的结果。哪一堂课?
我希望我能写下类/接口名称,但我没有...
在查看 JDK javadocs 时,我看到对类/接口的引用,其目的是收集和使用 ExecutorService 生成的结果(已完成的Futures
),可能在系统的其他地方。当时我在心里记下了它,因为它非常适合我需要的东西,但我似乎无法从我的舌尖说出班级的名字。
有人知道我指的是什么吗?
I wish I would have written the class/interface name down but I didn't...
When looking through the JDK javadocs I saw reference to a class/interface with the purpose of collecting and consuming the results produced by an ExecutorService
(completed Futures<T>
s), possibly elsewhere in the system. At the time I took a mental note of it because it was a perfect fit for what I needed, but I can't seem to get the name of the class off the tip of my tongue.
Anyone have an idea of what I am referring to?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否指的是
ExecutorCompletionService
?
Are you referring to
ExecutorCompletionService
?