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

com.taobao.drc.clusterclient.PartitionClient Maven / Gradle / Ivy

There is a newer version: 5.0.0.1.beta
Show newest version
package com.taobao.drc.clusterclient;

import com.taobao.drc.clusterclient.partition.BaseCheckpoint;
import com.taobao.drc.clusterclient.partition.IPartition;
import com.taobao.drc.clusterclient.util.Gaugeable;

import java.io.Closeable;
import java.io.IOException;

/**
 * @author yangyang
 * @since 17/6/29
 */
public interface PartitionClient extends Closeable, Gaugeable {
    void start() throws IOException;

    boolean isActive();

    String offset();

    NotifyController getNotifyController();

    IPartition getPartition();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy