org.opensearch.migrations.replay.kafka.PojoKafkaCommitOffsetData 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
The newest version!
package org.opensearch.migrations.replay.kafka;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public class PojoKafkaCommitOffsetData implements KafkaCommitOffsetData {
final int generation;
final int partition;
final long offset;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy