public static class CreateTopicPolicy.RequestMetadata
extends java.lang.Object
Constructor | Description |
---|---|
RequestMetadata(java.lang.String topic,
java.lang.Integer numPartitions,
java.lang.Short replicationFactor,
java.util.Map<java.lang.Integer,java.util.List<java.lang.Integer>> replicasAssignments,
java.util.Map<java.lang.String,java.lang.String> configs) |
Create an instance of this class with the provided parameters.
|
Modifier and Type | Method | Description |
---|---|---|
java.util.Map<java.lang.String,java.lang.String> |
configs() |
Return topic configs in the request, not including broker defaults.
|
java.lang.Integer |
numPartitions() |
Return the number of partitions to create or null if replicaAssignments is not null.
|
java.util.Map<java.lang.Integer,java.util.List<java.lang.Integer>> |
replicasAssignments() |
Return a map from partition id to replica (broker) ids or null if numPartitions and replicationFactor are
set instead.
|
java.lang.Short |
replicationFactor() |
Return the number of replicas to create or null if replicaAssignments is not null.
|
java.lang.String |
topic() |
Return the name of the topic to create.
|
java.lang.String |
toString() |
public RequestMetadata(java.lang.String topic, java.lang.Integer numPartitions, java.lang.Short replicationFactor, java.util.Map<java.lang.Integer,java.util.List<java.lang.Integer>> replicasAssignments, java.util.Map<java.lang.String,java.lang.String> configs)
CreateTopicPolicy
implementations easier.topic
- the name of the topic to created.numPartitions
- the number of partitions to create or null if replicasAssignments is set.replicationFactor
- the replication factor for the topic or null if replicaAssignments is set.replicasAssignments
- replica assignments or null if numPartitions and replicationFactor is set. The
assignment is a map from partition id to replica (broker) ids.configs
- topic configs for the topic to be created, not including broker defaults. Broker configs are
passed via the configure()
method of the policy implementation.public java.lang.String topic()
public java.lang.Integer numPartitions()
public java.lang.Short replicationFactor()
public java.util.Map<java.lang.Integer,java.util.List<java.lang.Integer>> replicasAssignments()
public java.util.Map<java.lang.String,java.lang.String> configs()
configure()
method of the policy implementation.public java.lang.String toString()
toString
in class java.lang.Object