liurunyu
2024-12-17 5680507b76dcef28afd87e24380b5e49aa40eb51
1
2
3
4
5
6
7
8
package com.dy.common.mw.core;
 
public class CoreUnitConfigVo {
    public Long coreInterval = 100L ;//大忙时(除了恒久任务,还有其他任务需处理),核心线程暂停间隔
    public Integer queueWarnSize = 1000 ;//队列报警长度
    public Integer queueMaxSize = 5000 ;//队列最大长度
    public Boolean showStartInfo; //是否在控制台上显示信息
}