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.Serializable
The 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 int
brokerId()
boolean
equals(java.lang.Object obj)
int
hashCode()
int
partition()
java.lang.String
topic()
java.lang.String
toString()
-
-
-
Method Detail
-
topic
public java.lang.String topic()
-
partition
public int partition()
-
brokerId
public int brokerId()
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-