This commit is contained in:
77
2024-05-20 12:32:57 +08:00
parent 5bfdde942c
commit 6970319697
9 changed files with 46 additions and 9 deletions

View File

@@ -22,6 +22,10 @@ public class ExecutorConstant {
COMMON_EXECUTOR = TtlExecutors.getTtlExecutor(commonExecutor);
}
public static void main(String[] args) {
}
private static ThreadFactory init(String nameFormat){
return new ThreadFactoryBuilder().setNameFormat(nameFormat).build();
}