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

club.zhcs.lina.starter.event.SpringEventAutoConfigurationProperties Maven / Gradle / Ivy

There is a newer version: 3.3.4
Show newest version
package club.zhcs.lina.starter.event;

import org.springframework.boot.context.properties.ConfigurationProperties;

import lombok.Data;

/**
 * 
 * @author kerbores([email protected])
 *
 */
@Data
@ConfigurationProperties(prefix = "lina.event")
public class SpringEventAutoConfigurationProperties {

    boolean async = true;

    int corePoolSize = 5;
    int maxPoolSize = 20;
    int queueCapacity = 100;
    int keepAliveSeconds = 300;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy