public ErrorListenerPathAndBytesable <String> inBackground(IBackgroundCallback callback,
                                                            Object context,
                                                            IExecutor executor)
 {
     backgrounding = new Backgrounding(client, callback, context, executor);
     return(this);
 }
 GetChildrenBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     watching      = new Watching();
     backgrounding = new Backgrounding();
     responseStat  = null;
 }
 SetACLBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     backgrounding = new Backgrounding();
     acling        = new ACLing(client.getAclProvider());
     version       = -1;
 }
示例#4
0
 ExistsBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     backgrounding = new Backgrounding();
     watching      = new Watching();
     createParentContainersIfNeeded = false;
 }
示例#5
0
 SetDataBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     backgrounding = new Backgrounding();
     version       = -1;
     compress      = false;
 }
示例#6
0
 DeleteBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client              = client;
     version                  = -1;
     backgrounding            = new Backgrounding();
     deletingChildrenIfNeeded = false;
     isGuaranteed             = false;
 }
示例#7
0
 GetDataBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     responseStat  = null;
     watching      = new Watching();
     backgrounding = new Backgrounding();
     decompress    = false;
 }
示例#8
0
 internal Backgrounding(Backgrounding rhs, IUnhandledErrorListener errorListener)
 {
     if (rhs == null)
     {
         rhs = new Backgrounding();
     }
     this.inBackgrnd    = rhs.inBackgrnd;
     this.context       = rhs.context;
     this.callback      = rhs.callback;
     this.errorListener = errorListener;
 }
示例#9
0
 internal Backgrounding(Backgrounding rhs, IUnhandledErrorListener errorListener)
 {
     if (rhs == null)
     {
         rhs = new Backgrounding();
     }
     this.inBackgrnd = rhs.inBackgrnd;
     this.context = rhs.context;
     this.callback = rhs.callback;
     this.errorListener = errorListener;
 }
示例#10
0
 internal CreateBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client               = client;
     createMode                = CreateMode.PERSISTENT;
     backgrounding             = new Backgrounding();
     acling                    = new ACLing(client.getAclProvider());
     createParentsIfNeeded     = false;
     createParentsAsContainers = false;
     compress                  = false;
     doProtected               = false;
     protectedId               = null;
 }
 public IErrorListenerPathable <List <String> > inBackground(IBackgroundCallback callback)
 {
     backgrounding = new Backgrounding(callback);
     return(this);
 }
示例#12
0
 public IErrorListenerPathable <byte[]> inBackground()
 {
     backgrounding = new Backgrounding(true);
     return(this);
 }
示例#13
0
 public IErrorListenerPathable <byte[]> inBackground(IBackgroundCallback callback, Object context, IExecutor executor)
 {
     backgrounding = new Backgrounding(client, callback, context, executor);
     return(this);
 }
示例#14
0
 public IErrorListenerPathable <byte[]> inBackground(IBackgroundCallback callback, Object context)
 {
     backgrounding = new Backgrounding(callback, context);
     return(this);
 }
示例#15
0
 public PathAndBytesable <String> withUnhandledErrorListener(IUnhandledErrorListener listener)
 {
     backgrounding = new Backgrounding(backgrounding, listener);
     return(this);
 }
示例#16
0
 public ErrorListenerPathAndBytesable <String> inBackground(Object context)
 {
     backgrounding = new Backgrounding(context);
     return(this);
 }
示例#17
0
 public ErrorListenerPathAndBytesable <Stat> inBackground(IBackgroundCallback callback, Object context)
 {
     backgrounding = new Backgrounding(callback, context);
     return(this);
 }
示例#18
0
 GetACLBuilderImpl(CuratorFrameworkImpl client)
 {
     this.client   = client;
     backgrounding = new Backgrounding();
     responseStat  = new Stat();
 }
 public IPathable <List <String> > withUnhandledErrorListener(IUnhandledErrorListener listener)
 {
     backgrounding = new Backgrounding(backgrounding, listener);
     return(this);
 }
示例#20
0
 public IErrorListenerPathable <object> inBackground(object context)
 {
     backgrounding = new Backgrounding(context);
     return(this);
 }
 public IErrorListenerPathable <List <String> > inBackground()
 {
     backgrounding = new Backgrounding(true);
     return(this);
 }
示例#22
0
 public ErrorListenerPathAndBytesable <Stat> inBackground(IBackgroundCallback callback, IExecutor executor)
 {
     backgrounding = new Backgrounding(client, callback, executor);
     return(this);
 }
 public IErrorListenerPathable <List <String> > inBackground(IBackgroundCallback callback, IExecutor executor)
 {
     backgrounding = new Backgrounding(client, callback, executor);
     return(this);
 }
示例#24
0
 public ErrorListenerPathAndBytesable <String> inBackground(IBackgroundCallback callback)
 {
     backgrounding = new Backgrounding(callback);
     return(this);
 }
 public IErrorListenerPathable <List <String> > inBackground(Object context)
 {
     backgrounding = new Backgrounding(context);
     return(this);
 }
示例#26
0
 public ErrorListenerPathAndBytesable <String> inBackground()
 {
     backgrounding = new Backgrounding(true);
     return(this);
 }