We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在 ThreadPoolGovernor 中 创建了线程池监听调度线程池 monitorScheduler,monitorScheduler 的线程创建是通过 new NamedThreadFactory("SOFA-Thread-Pool-Monitor") 进行处理,在 NamedThreadFactory 默认构造方法中 public NamedThreadFactory(String name) { this(name, false); }创建的是非守护进程,在外部也未发现 monitorScheduler 调用shutdown方法,请问在应用正常stop时是否无法停止线程池 monitorScheduler 已创建的监听线程。
The text was updated successfully, but these errors were encountered:
是的,这个线程池没有添加关闭的钩子,会随着JVM的生命周期结束关闭
Sorry, something went wrong.
No branches or pull requests
在 ThreadPoolGovernor 中 创建了线程池监听调度线程池 monitorScheduler,monitorScheduler 的线程创建是通过 new NamedThreadFactory("SOFA-Thread-Pool-Monitor") 进行处理,在 NamedThreadFactory 默认构造方法中
public NamedThreadFactory(String name) {
this(name, false);
}创建的是非守护进程,在外部也未发现 monitorScheduler 调用shutdown方法,请问在应用正常stop时是否无法停止线程池 monitorScheduler 已创建的监听线程。
The text was updated successfully, but these errors were encountered: