Java Code Examples for org.apache.zookeeper.AsyncCallback#ChildrenCallback

The following examples show how to use org.apache.zookeeper.AsyncCallback#ChildrenCallback . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ZooKeeperConnection.java    From util with Apache License 2.0 4 votes vote down vote up
public void getChildren(final String path, final Watcher watcher, final AsyncCallback.ChildrenCallback cb, final Object ctx) {
    zooKeeper.getChildren(path, watcher, cb, ctx);
}
 
Example 2
Source File: ZooKeeperConnection.java    From util with Apache License 2.0 4 votes vote down vote up
public void getChildren(final String path, final boolean watch, final AsyncCallback.ChildrenCallback cb, final Object ctx) {
    zooKeeper.getChildren(path, watch, cb, ctx);
}
 
Example 3
Source File: ZooKeeperImpl.java    From hbase-indexer with Apache License 2.0 4 votes vote down vote up
@Override
public void getChildren(String path, Watcher watcher, AsyncCallback.ChildrenCallback cb, Object ctx) {
    delegate.getChildren(path, watcher, cb, ctx);
}
 
Example 4
Source File: ZooKeeperImpl.java    From hbase-indexer with Apache License 2.0 4 votes vote down vote up
@Override
public void getChildren(String path, boolean watch, AsyncCallback.ChildrenCallback cb, Object ctx) {
    delegate.getChildren(path, watch, cb, ctx);
}
 
Example 5
Source File: ZooKeeperItf.java    From hbase-indexer with Apache License 2.0 votes vote down vote up
void getChildren(String path, Watcher watcher, AsyncCallback.ChildrenCallback cb, Object ctx); 
Example 6
Source File: ZooKeeperItf.java    From hbase-indexer with Apache License 2.0 votes vote down vote up
void getChildren(String path, boolean watch, AsyncCallback.ChildrenCallback cb, Object ctx);