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

com.englishtown.vertx.zookeeper.ConfiguratorHelper Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.englishtown.vertx.zookeeper;

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

import java.util.List;

/**
 *
 */
public interface ConfiguratorHelper {

    void getConfigElement(String path, Handler> callback);

    void getConfigElement(String path, MatchBehavior matchBehavior, Handler> callback);

    void getConfigElement(String path, CuratorWatcher watcher, Handler> callback);

    void getConfigElement(String path, CuratorWatcher watcher, MatchBehavior matchBehavior, Handler> callback);

    List getPathSuffixes();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy