@Override public ErrorListenerPathable<Void> inBackground() { // NOP always in background return this; }
@Override public ErrorListenerPathable<Void> inBackground(Object context) { backgrounding = new Backgrounding(context); return this; }
@Override public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback) { backgrounding = new Backgrounding(callback); return this; }
@Override public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context) { backgrounding = new Backgrounding(callback, context); return this; }
@Override public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Executor executor) { backgrounding = new Backgrounding(client, callback, executor); return this; }
@Override public ErrorListenerPathable<Void> inBackground(BackgroundCallback callback, Object context, Executor executor) { backgrounding = new Backgrounding(client, callback, context, executor); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context) { backgrounding = new Backgrounding(callback, context); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Object context, Executor executor) { backgrounding = new Backgrounding(client, callback, context, executor); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback) { backgrounding = new Backgrounding(callback); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground(BackgroundCallback callback, Executor executor) { backgrounding = new Backgrounding(client, callback, executor); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground() { backgrounding = new Backgrounding(true); return this; }
@Override public ErrorListenerPathable<List<String>> inBackground(Object context) { backgrounding = new Backgrounding(context); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Object context) { backgrounding = new Backgrounding(callback, context); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Object context, Executor executor) { backgrounding = new Backgrounding(client, callback, context, executor); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground() { backgrounding = new Backgrounding(true); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground(Object context) { backgrounding = new Backgrounding(context); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback) { backgrounding = new Backgrounding(callback); return this; }
@Override public ErrorListenerPathable<List<ACL>> inBackground(BackgroundCallback callback, Executor executor) { backgrounding = new Backgrounding(client, callback, executor); return this; }