org.opensearch.migrations.replay.kafka.KafkaCommitOffsetData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trafficReplayer Show documentation
Show all versions of trafficReplayer Show documentation
Everything opensearch migrations
package org.opensearch.migrations.replay.kafka;
public interface KafkaCommitOffsetData {
int getPartition();
long getOffset();
int getGeneration();
}