检查 ExecutorService 详细信息

发布于 2024-12-26 13:11:50 字数 49 浏览 0 评论 0原文

有没有办法深入了解 ExecutorServer 对象以查看当前正在使用多少个线程?

Is there a way to dig into an ExecutorServer object to see how many threads are currently being used?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无尽的现实 2025-01-02 13:11:50
if (executor instanceof ThreadPoolExecutor) {
    int poolSize = ((ThreadPoolExecutor) executor).getPoolSize();
    // or
    int currentlyActive = ((ThreadPoolExecutor) executor).getActiveCount();
}

但一般来说,你应该知道这一点,因为你已经构建了服务(除非它隐藏在一些糟糕的 API 中)

if (executor instanceof ThreadPoolExecutor) {
    int poolSize = ((ThreadPoolExecutor) executor).getPoolSize();
    // or
    int currentlyActive = ((ThreadPoolExecutor) executor).getActiveCount();
}

But generally, you should know that, because you have constructed the service (unless it is hidden in some bad API)

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