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

com.github.lontime.extquartz.configuration.ThreadPoolOption Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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