tech.ydb.core.operation.AsyncOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-core Show documentation
Show all versions of ydb-sdk-core Show documentation
Core module of Java SDK for YDB
package tech.ydb.core.operation;
import java.util.concurrent.ScheduledExecutorService;
/**
*
* @author Aleksandr Gorshenin
*/
interface AsyncOperation extends Operation {
ScheduledExecutorService getScheduler();
}