java中如何将主线程加入到线程池中
就像使用 join() 连接两个线程一样,有没有办法将线程连接到 ExecutorService 对象(线程池)?
Like joining two threads using join(), is there a way to join a thread to a ExecutorService object (a thread pool) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,您可以从第二个线程调用执行程序服务的 shutdown 方法,然后调用 waitTermination。此方法将阻塞,直到执行程序服务中所有提交的作业完成。
According to the docs, you could, from your second thread, call the shutdown method of your executor service and next, call for awaitTermination. This method will block till completion of all submitted jobs in the executor service.