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

tech.ytsaurus.client.BaseYTsaurusClient Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client;

import java.io.Closeable;
import java.util.List;
import java.util.concurrent.ScheduledExecutorService;

/**
 * Client interface with common methods for {@link YTsaurusClient} and MockYTsaurusClient.
 */
public interface BaseYTsaurusClient extends ApiServiceClient, Closeable {
    /**
     * Get a list of client clusters
     */
    List getClusters();

    /**
     * Get a client scheduled executor
     */
    ScheduledExecutorService getExecutor();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy