
org.reactivecommons.async.rabbit.standalone.config.RabbitProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of async-commons-rabbit-standalone Show documentation
Show all versions of async-commons-rabbit-standalone Show documentation
Abstract your broker with semantic async messages
The newest version!
package org.reactivecommons.async.rabbit.standalone.config;
import lombok.Data;
@Data
public class RabbitProperties {
private String host = "localhost";
private int port = 5672;
private String username = "guest";
private String password = "guest"; //NOSONAR
private String virtualHost;
private Integer channelPoolMaxCacheSize;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy