All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yandex.ydb.examples.App Maven / Gradle / Ivy

There is a newer version: 1.10.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy