com.yandex.ydb.table.SessionSupplier 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
package com.yandex.ydb.table;
import java.time.Duration;
import java.util.concurrent.CompletableFuture;
import com.yandex.ydb.core.Result;
/**
* @author Sergey Polovko
*/
public interface SessionSupplier {
CompletableFuture> getOrCreateSession(Duration timeout);
}