com.yandex.ydb.coordination.SessionDescriptionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: ydb/public/api/protos/ydb_coordination.proto
package com.yandex.ydb.coordination;
public interface SessionDescriptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:Ydb.Coordination.SessionDescription)
com.google.protobuf.MessageOrBuilder {
/**
*
* Session id generated by the server
*
*
* uint64 session_id = 1;
* @return The sessionId.
*/
long getSessionId();
/**
*
* Expiration timeout of the session
*
*
* uint64 timeout_millis = 2;
* @return The timeoutMillis.
*/
long getTimeoutMillis();
/**
*
* User-specified description of this session
*
*
* string description = 3;
* @return The description.
*/
java.lang.String getDescription();
/**
*
* User-specified description of this session
*
*
* string description = 3;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
*
* True if this session is currently attached to a client
*
*
* bool attached = 4;
* @return The attached.
*/
boolean getAttached();
}