![JAR search and dependency download from the Maven repository](/logo.png)
org.zbus.client.ha.AgentConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus-client Show documentation
Show all versions of zbus-client Show documentation
lightweight message queue, service bus
The newest version!
package org.zbus.client.ha;
public class AgentConfig extends PoolConfig {
private String trackServerList = "127.0.0.1:16666";
private String seedBroker = "127.0.0.1:15555";
public String getTrackServerList() {
return trackServerList;
}
public void setTrackServerList(String trackServerList) {
this.trackServerList = trackServerList;
}
public String getSeedBroker() {
return seedBroker;
}
public void setSeedBroker(String seedBroker) {
this.seedBroker = seedBroker;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy