
org.reactivecommons.async.rabbit.config.props.AsyncProps Maven / Gradle / Ivy
package org.reactivecommons.async.rabbit.config.props;
import lombok.Getter;
import lombok.Setter;
import org.reactivecommons.async.rabbit.config.RabbitProperties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
@Getter
@Setter
@ConfigurationProperties(prefix = "app.async")
public class AsyncProps {
@NestedConfigurationProperty
private FluxProps flux = new FluxProps();
@NestedConfigurationProperty
private DomainProps domain = new DomainProps();
@NestedConfigurationProperty
private DirectProps direct = new DirectProps();
@NestedConfigurationProperty
private GlobalProps global = new GlobalProps();
@NestedConfigurationProperty
private NotificationProps notificationProps = new NotificationProps();
@NestedConfigurationProperty
private Map connections = new TreeMap<>();
private List listenRepliesFrom = new ArrayList<>();
private Integer maxRetries = 10;
private Integer prefetchCount = 250;
private Integer retryDelay = 1000;
private Boolean withDLQRetry = false;
private Boolean delayedCommands = false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy