com.symphony.bdk.bot.sdk.sse.config.SsePoolProps Maven / Gradle / Ivy
package com.symphony.bdk.bot.sdk.sse.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@Component
@ConfigurationProperties(prefix = "concurrency.sse.pool")
public class SsePoolProps {
private Integer coreSize;
private Integer maxSize;
private Integer queueCapacity;
private String threadNamePrefix;
}