Package io.zeebe.client.api.response
Interface Topology
-
- All Known Implementing Classes:
TopologyImpl
public interface Topology
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<BrokerInfo>
getBrokers()
int
getClusterSize()
int
getPartitionsCount()
int
getReplicationFactor()
-
-
-
Method Detail
-
getBrokers
List<BrokerInfo> getBrokers()
- Returns:
- all (known) brokers of the cluster
-
getClusterSize
int getClusterSize()
- Returns:
- the size of the Zeebe broker cluster
-
getPartitionsCount
int getPartitionsCount()
- Returns:
- the configured number of partitions
-
getReplicationFactor
int getReplicationFactor()
- Returns:
- the configured replication factor for every partition
-
-