All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.topic.read.PartitionOffsets Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy