Package org.apache.niolex.zookeeper.watcher

Examples of org.apache.niolex.zookeeper.watcher.CommonRecoverableWatcher


     * @param listn the zookeeper listener
     * @return the current result
     * @throws ZKException if failed to do watch
     */
    public byte[] watchData(String path, ZKListener listn) {
        RecoverableWatcher recoWatcher = new CommonRecoverableWatcher(this,
                RecoverableWatcher.Type.DATA, listn, path);
        return submitWatcher(path, recoWatcher);
    }
View Full Code Here


     * @param listn the zookeeper listener
     * @return the current result
     * @throws ZKException if failed to do watch
     */
    public List<String> watchChildren(String path, ZKListener listn) {
        RecoverableWatcher recoWatcher = new CommonRecoverableWatcher(this,
                RecoverableWatcher.Type.CHILDREN, listn, path);
        return submitWatcher(path, recoWatcher);
    }
View Full Code Here

TOP

Related Classes of org.apache.niolex.zookeeper.watcher.CommonRecoverableWatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.