com.yandex.ydb.examples.App Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-examples Show documentation
Show all versions of ydb-sdk-examples Show documentation
Examples of usage Java SDK for Yandex Database (YDB)
package com.yandex.ydb.examples;
import com.yandex.ydb.core.rpc.RpcTransport;
/**
* @author Sergey Polovko
*/
public interface App extends AutoCloseable {
void run();
@Override
void close();
interface Factory {
App newApp(RpcTransport transport, String path);
}
}