Interface RecordMetadata
-
public interface RecordMetadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
offset()
int
partition()
String
topic()
-
-
-
Method Detail
-
topic
String topic()
- Returns:
- The topic of the original record received from Kafka
-
partition
int partition()
- Returns:
- The partition of the original record received from Kafka
-
offset
long offset()
- Returns:
- The offset of the original record received from Kafka
-
-