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

tech.ytsaurus.client.sync.SyncOperation Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client.sync;

import tech.ytsaurus.client.operations.OperationStatus;
import tech.ytsaurus.core.GUID;
import tech.ytsaurus.ysontree.YTreeNode;

public interface SyncOperation {
    GUID getId();

    OperationStatus getStatus();

    YTreeNode getResult();

    void watch();

    void watchAndThrowIfNotSuccess();

    void abort();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy