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

com.englishtown.vertx.zookeeper.builders.Watchable Maven / Gradle / Ivy

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

import org.apache.curator.framework.api.CuratorWatcher;

/**
 * A watchable operation builder
 */
public interface Watchable {

    /**
     * Adds a {@link org.apache.zookeeper.Watcher} to the request. This Watcher will be notified
     * if the node we're getting is modified in any way.
     *
     * @param watcher the watcher
     * @return builder of type T
     */
    public T usingWatcher(CuratorWatcher watcher);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy