tech.ydb.topic.read.PartitionOffsets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-topic Show documentation
Show all versions of ydb-sdk-topic Show documentation
Topic client implementation
package tech.ydb.topic.read;
import java.util.List;
import tech.ydb.topic.description.OffsetsRange;
/**
* @author Nikolay Perfilov
*/
public class PartitionOffsets {
private final PartitionSession partitionSession;
private final List offsets;
public PartitionOffsets(PartitionSession partitionSession, List offsets) {
this.partitionSession = partitionSession;
this.offsets = offsets;
}
public PartitionSession getPartitionSession() {
return partitionSession;
}
public List getOffsets() {
return offsets;
}
}