All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.anonymousmister.bootfastconfig.config.PropertiesNativeAsyncTaskExecutePoolCfig Maven / Gradle / Ivy

package com.github.anonymousmister.bootfastconfig.config;

import lombok.Data;

/**
 * @author mister
 */
@Data
public class PropertiesNativeAsyncTaskExecutePoolCfig {
    /**
     * 核心线程池大小
     */
    private Integer corePoolSize = 4;
    /**
     * 最大线程数
     */
    private Integer maxPoolSize = 8;
    /**
     * 队列容量
     */
    private Integer queueCapacity = 100;
    /**
     * 活跃时间
     */
    private Integer keepAliveSeconds = 60;
    /**
     * 线程名字前缀
     */
    private String threadNamePrefix = "winjoin-task-";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy