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

com.symphony.bdk.bot.sdk.event.config.BotPoolProps Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package com.symphony.bdk.bot.sdk.event.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.bot.pool")
public class BotPoolProps {

  private Integer coreSize;

  private Integer maxSize;

  private Integer queueCapacity;

  private String threadNamePrefix;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy