Class GetDataBuilderImpl
- java.lang.Object
-
- org.apache.curator.framework.imps.GetDataBuilderImpl
-
- All Implemented Interfaces:
Backgroundable<ErrorListenerPathable<byte[]>>,BackgroundPathable<byte[]>,Decompressible<GetDataWatchBackgroundStatable>,ErrorListenerPathable<byte[]>,GetDataBuilder,Pathable<byte[]>,Statable<WatchPathable<byte[]>>,Watchable<BackgroundPathable<byte[]>>
public class GetDataBuilderImpl extends java.lang.Object implements GetDataBuilder, ErrorListenerPathable<byte[]>
-
-
Constructor Summary
Constructors Constructor Description GetDataBuilderImpl(CuratorFrameworkImpl client, org.apache.zookeeper.data.Stat responseStat, org.apache.zookeeper.Watcher watcher, Backgrounding backgrounding, boolean decompress)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetDataWatchBackgroundStatabledecompressed()Cause the data to be de-compressed using the configured compression providerbyte[]forPath(java.lang.String path)Commit the currently building operation using the given pathErrorListenerPathable<byte[]>inBackground()Perform the action in the backgroundErrorListenerPathable<byte[]>inBackground(java.lang.Object context)Perform the action in the backgroundErrorListenerPathable<byte[]>inBackground(BackgroundCallback callback)Perform the action in the backgroundErrorListenerPathable<byte[]>inBackground(BackgroundCallback callback, java.lang.Object context)Perform the action in the backgroundErrorListenerPathable<byte[]>inBackground(BackgroundCallback callback, java.lang.Object context, java.util.concurrent.Executor executor)Perform the action in the backgroundErrorListenerPathable<byte[]>inBackground(BackgroundCallback callback, java.util.concurrent.Executor executor)Perform the action in the backgroundvoidperformBackgroundOperation(org.apache.curator.framework.imps.OperationAndData<java.lang.String> operationAndData)WatchPathable<byte[]>storingStatIn(org.apache.zookeeper.data.Stat stat)Have the operation fill the provided stat objectBackgroundPathable<byte[]>usingWatcher(CuratorWatcher watcher)Set a watcher for the operationBackgroundPathable<byte[]>usingWatcher(org.apache.zookeeper.Watcher watcher)Set a watcher for the operationBackgroundPathable<byte[]>watched()Have the operation set a watchPathable<byte[]>withUnhandledErrorListener(UnhandledErrorListener listener)Set an error listener for this background operation.
-
-
-
Constructor Detail
-
GetDataBuilderImpl
public GetDataBuilderImpl(CuratorFrameworkImpl client, org.apache.zookeeper.data.Stat responseStat, org.apache.zookeeper.Watcher watcher, Backgrounding backgrounding, boolean decompress)
-
-
Method Detail
-
decompressed
public GetDataWatchBackgroundStatable decompressed()
Description copied from interface:DecompressibleCause the data to be de-compressed using the configured compression provider- Specified by:
decompressedin interfaceDecompressible<GetDataWatchBackgroundStatable>- Returns:
- this
-
storingStatIn
public WatchPathable<byte[]> storingStatIn(org.apache.zookeeper.data.Stat stat)
Description copied from interface:StatableHave the operation fill the provided stat object- Specified by:
storingStatInin interfaceStatable<WatchPathable<byte[]>>- Parameters:
stat- the stat to have filled in- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground(BackgroundCallback callback, java.lang.Object context)
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Parameters:
callback- a functor that will get called when the operation has completedcontext- context object - will be available from the event sent to the listener- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground(BackgroundCallback callback, java.lang.Object context, java.util.concurrent.Executor executor)
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Parameters:
callback- a functor that will get called when the operation has completedcontext- context object - will be available from the event sent to the listenerexecutor- executor to use for the background call- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground(BackgroundCallback callback)
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Parameters:
callback- a functor that will get called when the operation has completed- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground(BackgroundCallback callback, java.util.concurrent.Executor executor)
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Parameters:
callback- a functor that will get called when the operation has completedexecutor- executor to use for the background call- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground()
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Returns:
- this
-
inBackground
public ErrorListenerPathable<byte[]> inBackground(java.lang.Object context)
Description copied from interface:BackgroundablePerform the action in the background- Specified by:
inBackgroundin interfaceBackgroundable<ErrorListenerPathable<byte[]>>- Parameters:
context- context object - will be available from the event sent to the listener- Returns:
- this
-
withUnhandledErrorListener
public Pathable<byte[]> withUnhandledErrorListener(UnhandledErrorListener listener)
Description copied from interface:ErrorListenerPathableSet an error listener for this background operation. If an exception occurs while processing the call in the background, this listener will be called- Specified by:
withUnhandledErrorListenerin interfaceErrorListenerPathable<byte[]>- Parameters:
listener- the listener- Returns:
- this for chaining
-
watched
public BackgroundPathable<byte[]> watched()
Description copied from interface:WatchableHave the operation set a watch- Specified by:
watchedin interfaceWatchable<BackgroundPathable<byte[]>>- Returns:
- this
-
usingWatcher
public BackgroundPathable<byte[]> usingWatcher(org.apache.zookeeper.Watcher watcher)
Description copied from interface:WatchableSet a watcher for the operation- Specified by:
usingWatcherin interfaceWatchable<BackgroundPathable<byte[]>>- Parameters:
watcher- the watcher- Returns:
- this
-
usingWatcher
public BackgroundPathable<byte[]> usingWatcher(CuratorWatcher watcher)
Description copied from interface:WatchableSet a watcher for the operation- Specified by:
usingWatcherin interfaceWatchable<BackgroundPathable<byte[]>>- Parameters:
watcher- the watcher- Returns:
- this
-
performBackgroundOperation
public void performBackgroundOperation(org.apache.curator.framework.imps.OperationAndData<java.lang.String> operationAndData) throws java.lang.Exception- Throws:
java.lang.Exception
-
forPath
public byte[] forPath(java.lang.String path) throws java.lang.ExceptionDescription copied from interface:PathableCommit the currently building operation using the given path
-
-