有没有什么方法可以找到 ThreadPoolExecutor 中剩余多少任务​​?

发布于 2024-12-17 11:55:34 字数 122 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杀手六號 2024-12-24 11:55:34

使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文