ExistsBuilderImpl(CuratorFrameworkImpl client) { this.client = client; backgrounding = new Backgrounding(); watching = new Watching(); createParentContainersIfNeeded = false; }
GetChildrenBuilderImpl(CuratorFrameworkImpl client) { this.client = client; watching = new Watching(); backgrounding = new Backgrounding(); responseStat = null; }
GetDataBuilderImpl(CuratorFrameworkImpl client) { this.client = client; responseStat = null; watching = new Watching(); backgrounding = new Backgrounding(); decompress = false; }
public IBackgroundPathable <List <String> > usingWatcher(CuratorWatcher watcher) { watching = new Watching(client, watcher); return(this); }
public IBackgroundPathable <List <String> > watched() { watching = new Watching(true); return(this); }
public IBackgroundPathable <byte[]> usingWatcher(Watcher watcher) { watching = new Watching(client, watcher); return(this); }
public IBackgroundPathable <byte[]> watched() { watching = new Watching(true); return(this); }