Exemplo n.º 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;
 }
Exemplo n.º 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);
 }
Exemplo n.º 6
0
 public IBackgroundPathable <byte[]> usingWatcher(Watcher watcher)
 {
     watching = new Watching(client, watcher);
     return(this);
 }
Exemplo n.º 7
0
 public IBackgroundPathable <byte[]> watched()
 {
     watching = new Watching(true);
     return(this);
 }