Package org.apache.curator.x.async.api
Interface WatchableAsyncCuratorFramework
-
- All Known Subinterfaces:
AsyncCuratorFramework,AsyncCuratorFrameworkDsl
- All Known Implementing Classes:
AsyncCuratorFrameworkImpl
public interface WatchableAsyncCuratorFrameworkoperations that support watching
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncExistsBuildercheckExists()Start an exists builder.AsyncGetChildrenBuildergetChildren()Start a get children builderAsyncGetConfigBuildergetConfig()Start a getConfig builderAsyncGetDataBuildergetData()Start a get data builder
-
-
-
Method Detail
-
checkExists
AsyncExistsBuilder checkExists()
Start an exists builder. The builder will return a Stat object as if org.apache.zookeeper.ZooKeeper.exists() were called. Thus, a null means that it does not exist and an actual Stat object means it does exist.- Returns:
- builder object
-
getData
AsyncGetDataBuilder getData()
Start a get data builder- Returns:
- builder object
-
getChildren
AsyncGetChildrenBuilder getChildren()
Start a get children builder- Returns:
- builder object
-
getConfig
AsyncGetConfigBuilder getConfig()
Start a getConfig builder- Returns:
- builder object
-
-