WangHan
2024-09-12 d5855a4926926698b740bc6c7ba489de47adb68b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package tech.powerjob.server.common.constants;
 
/**
 * 线程池
 *
 * @author tjq
 * @since 2022/9/12
 */
public class PJThreadPool {
 
    /**
     * 定时调度用线程池
     */
    public static final String TIMING_POOL = "PowerJobTimingPool";
 
    /**
     * 后台任务异步线程池
     */
    public static final String BACKGROUND_POOL = "PowerJobBackgroundPool";
 
    /**
     * 本地数据库专用线程池
     */
    public static final String LOCAL_DB_POOL = "PowerJobLocalDbPool";
 
}