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

com.englishtown.vertx.curator.CuratorClient Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.englishtown.vertx.curator;

import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.api.CuratorEvent;
import org.apache.curator.framework.api.CuratorWatcher;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;

/**
 */
public interface CuratorClient {

    CuratorFramework getCuratorFramework();

    void execute(CuratorOperation operation, Handler> handler);

    CuratorClient usingNamespace(String namespace);

    boolean initialized();

    void onReady(Handler> callback);

    CuratorWatcher wrapWatcher(CuratorWatcher watcher);

    void close();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy