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