whyclxw
2024-09-11 ad1fe8aaf1b5d87f9c9667ae7165caa8db3ad78b
src/main/java/com/whyc/factory/ThreadPoolExecutorFactory.java
@@ -10,7 +10,7 @@
    private static ThreadPoolExecutor init() {
        //线程池初始化,拒绝策略为丢弃
        UserThreadFactory userThreadFactory = new UserThreadFactory("br");
        UserThreadFactory userThreadFactory = new UserThreadFactory("ls");
        ThreadPoolExecutor pool = new ThreadPoolExecutor(8, 48, 10, TimeUnit.SECONDS, new LinkedBlockingDeque<>(16), userThreadFactory,new ThreadPoolExecutor.AbortPolicy());
        poolExecutor = pool;
        return pool;