Package org.apache.kafka.common
Class TopicPartitionReplica
- java.lang.Object
-
- org.apache.kafka.common.TopicPartitionReplica
-
- All Implemented Interfaces:
java.io.Serializable
public final class TopicPartitionReplica extends java.lang.Object implements java.io.SerializableThe topic name, partition number and the brokerId of the replica- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TopicPartitionReplica(java.lang.String topic, int partition, int brokerId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intbrokerId()booleanequals(java.lang.Object obj)inthashCode()intpartition()java.lang.Stringtopic()java.lang.StringtoString()
-
-
-
Method Detail
-
topic
public java.lang.String topic()
-
partition
public int partition()
-
brokerId
public int brokerId()
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-