com.merapar.graphql.executor.GraphQlExecutorProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-spring-boot-starter Show documentation
Show all versions of graphql-spring-boot-starter Show documentation
This is a Spring boot starter project for the GraphQL Java project.
The newest version!
package com.merapar.graphql.executor;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "com.merapar.graphql.executor")
public class GraphQlExecutorProperties {
@Getter
@Setter
private Integer minimumThreadPoolSizeQuery = 10;
@Getter
@Setter
private Integer maximumThreadPoolSizeQuery = 20;
@Getter
@Setter
private Integer keepAliveTimeInSecondsQuery = 30;
@Getter
@Setter
private Integer minimumThreadPoolSizeMutation = 10;
@Getter
@Setter
private Integer maximumThreadPoolSizeMutation = 20;
@Getter
@Setter
private Integer keepAliveTimeInSecondsMutation = 30;
@Getter
@Setter
private Integer minimumThreadPoolSizeSubscription = 10;
@Getter
@Setter
private Integer maximumThreadPoolSizeSubscription = 20;
@Getter
@Setter
private Integer keepAliveTimeInSecondsSubscription = 30;
}