org.apache.curator.framework.api.ErrorListenerPathable Java Examples

The following examples show how to use org.apache.curator.framework.api.ErrorListenerPathable. 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: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, executor);
    return this;
}
 
Example #2
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(Object context)
{
    backgrounding = new Backgrounding(context);
    return this;
}
 
Example #3
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback)
{
    backgrounding = new Backgrounding(callback);
    return this;
}
 
Example #4
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context)
{
    backgrounding = new Backgrounding(callback, context);
    return this;
}
 
Example #5
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, executor);
    return this;
}
 
Example #6
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, context, executor);
    return this;
}
 
Example #7
Source File: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context)
{
    backgrounding = new Backgrounding(callback, context);
    return this;
}
 
Example #8
Source File: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, context, executor);
    return this;
}
 
Example #9
Source File: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback)
{
    backgrounding = new Backgrounding(callback);
    return this;
}
 
Example #10
Source File: SyncBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground()
{
    // NOP always in background
    return this;
}
 
Example #11
Source File: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground()
{
    backgrounding = new Backgrounding(true);
    return this;
}
 
Example #12
Source File: GetChildrenBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(Object context)
{
    backgrounding = new Backgrounding(context);
    return this;
}
 
Example #13
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Object context)
{
    backgrounding = new Backgrounding(callback, context);
    return this;
}
 
Example #14
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Object context, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, context, executor);
    return this;
}
 
Example #15
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground()
{
    backgrounding = new Backgrounding(true);
    return this;
}
 
Example #16
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground(Object context)
{
    backgrounding = new Backgrounding(context);
    return this;
}
 
Example #17
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback)
{
    backgrounding = new Backgrounding(callback);
    return this;
}
 
Example #18
Source File: GetACLBuilderImpl.java    From curator with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, executor);
    return this;
}
 
Example #19
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, executor);
    return this;
}
 
Example #20
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(Object context)
{
    backgrounding = new Backgrounding(context);
    return this;
}
 
Example #21
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback)
{
    backgrounding = new Backgrounding(callback);
    return this;
}
 
Example #22
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context)
{
    backgrounding = new Backgrounding(callback, context);
    return this;
}
 
Example #23
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, executor);
    return this;
}
 
Example #24
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, context, executor);
    return this;
}
 
Example #25
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context)
{
    backgrounding = new Backgrounding(callback, context);
    return this;
}
 
Example #26
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context, Executor executor)
{
    backgrounding = new Backgrounding(client, callback, context, executor);
    return this;
}
 
Example #27
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback)
{
    backgrounding = new Backgrounding(callback);
    return this;
}
 
Example #28
Source File: SyncBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<Void> inBackground()
{
    // NOP always in background
    return this;
}
 
Example #29
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground()
{
    backgrounding = new Backgrounding(true);
    return this;
}
 
Example #30
Source File: GetChildrenBuilderImpl.java    From xian with Apache License 2.0 4 votes vote down vote up
@Override
public ErrorListenerPathable<List<String>> inBackground(Object context)
{
    backgrounding = new Backgrounding(context);
    return this;
}