有没有什么方法可以找到 ThreadPoolExecutor 中剩余多少任务?
我正在使用 ThreadPoolExecutor 来执行某些任务。我需要知道 ThreadPoolExecutor 是否有方法来查找分配的队列中剩余多少任务。是否可以?取决于返回值我会再次分配任务,我不知道提前分配了多少任务。
I'm using ThreadPoolExecutor for some task. I need to know whether ThreadPoolExecutor has and method to find how many task remaining in assigned queue. is it possible? depends upon the return value i'll assign task again ,I don't know how many task assigned early.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用ThreadPoolExecutor的getTaskCount()方法来获取队列中的任务。这是一个近似值,因为任务可以动态消耗并且该值可以改变。
Use the ThreadPoolExecutor's getTaskCount() method to get the tasks in the queue. This is an approximate value as tasks coulld be consumed dynamically and this value can change.