Package org.apache.curator.x.async.api
Interface AsyncGetDataBuilder
-
- All Superinterfaces:
AsyncPathable<AsyncStage<byte[]>>
public interface AsyncGetDataBuilder extends AsyncPathable<AsyncStage<byte[]>>
Builder to get ZNode data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncPathable<AsyncStage<byte[]>>decompressed()Cause the data to be de-compressed using the configured compression providerAsyncPathable<AsyncStage<byte[]>>decompressedStoringStatIn(org.apache.zookeeper.data.Stat stat)Have the operation fill the provided stat object and have the data be de-compressedAsyncPathable<AsyncStage<byte[]>>storingStatIn(org.apache.zookeeper.data.Stat stat)Have the operation fill the provided stat object-
Methods inherited from interface org.apache.curator.x.async.api.AsyncPathable
forPath
-
-
-
-
Method Detail
-
decompressed
AsyncPathable<AsyncStage<byte[]>> decompressed()
Cause the data to be de-compressed using the configured compression provider- Returns:
- this
-
storingStatIn
AsyncPathable<AsyncStage<byte[]>> storingStatIn(org.apache.zookeeper.data.Stat stat)
Have the operation fill the provided stat object- Parameters:
stat- the stat to have filled in- Returns:
- this
-
decompressedStoringStatIn
AsyncPathable<AsyncStage<byte[]>> decompressedStoringStatIn(org.apache.zookeeper.data.Stat stat)
Have the operation fill the provided stat object and have the data be de-compressed- Parameters:
stat- the stat to have filled in- Returns:
- this
- See Also:
decompressed(),storingStatIn(org.apache.zookeeper.data.Stat)
-
-