com.github.lontime.extquartz.configuration.ThreadPoolOption Maven / Gradle / Ivy
package com.github.lontime.extquartz.configuration;
import lombok.Data;
/**
* ThreadPoolOption.
* @author lontime
* @since 1.0
*/
@Data
public class ThreadPoolOption {
private Integer count = 3;
private Integer priority = Thread.NORM_PRIORITY;
private Boolean daemon;
private Boolean inheritLoader;
private Boolean inheritGroup;
private String threadNamePrefix;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy