tech.ydb.topic.read.events.StopPartitionSessionEvent 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.events;
import tech.ydb.topic.read.PartitionSession;
/**
* @author Nikolay Perfilov
*/
public interface StopPartitionSessionEvent {
PartitionSession getPartitionSession();
long getPartitionSessionId();
Long getPartitionId();
long getCommittedOffset();
void confirm();
}