tech.ydb.topic.read.PartitionSession 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;
/**
* @author Nikolay Perfilov
*/
public class PartitionSession {
private final long id;
private final long partitionId;
private final String path;
public PartitionSession(long id, long partitionId, String path) {
this.id = id;
this.partitionId = partitionId;
this.path = path;
}
public long getId() {
return id;
}
public long getPartitionId() {
return partitionId;
}
public String getPath() {
return path;
}
}