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

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

package tech.ytsaurus.client;

import java.util.concurrent.CompletableFuture;

public interface FileReader {
    /**
     * Returns revision of file node.
     */
    long revision() throws Exception;

    CompletableFuture readyEvent();

    boolean canRead() throws Exception;

    byte[] read() throws Exception;

    CompletableFuture close();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy