tech.ydb.topic.read.impl.ReadSession 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.impl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import tech.ydb.proto.topic.YdbTopic;
import tech.ydb.proto.topic.YdbTopic.StreamReadMessage.FromClient;
import tech.ydb.proto.topic.YdbTopic.StreamReadMessage.FromServer;
import tech.ydb.topic.TopicRpc;
import tech.ydb.topic.impl.SessionBase;
/**
* @author Nikolay Perfilov
*/
public abstract class ReadSession extends SessionBase {
private static final Logger logger = LoggerFactory.getLogger(ReadSession.class);
public ReadSession(TopicRpc rpc) {
super(rpc.readSession());
}
@Override
protected Logger getLogger() {
return logger;
}
@Override
protected void sendUpdateTokenRequest(String token) {
streamConnection.sendNext(YdbTopic.StreamReadMessage.FromClient.newBuilder()
.setUpdateTokenRequest(YdbTopic.UpdateTokenRequest.newBuilder()
.setToken(token)
.build())
.build()
);
}
}