示例#1
0
 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;
 }
示例#3
0
 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);
 }
示例#6
0
 public IBackgroundPathable <byte[]> usingWatcher(Watcher watcher)
 {
     watching = new Watching(client, watcher);
     return(this);
 }
示例#7
0
 public IBackgroundPathable <byte[]> watched()
 {
     watching = new Watching(true);
     return(this);
 }