All Methods Static Methods Instance Methods Concrete Methods
| Modifier and Type |
Method and Description |
protected void |
create(String path,
T data) |
protected CompletableFuture<Void> |
createAsync(String path,
T data) |
protected void |
delete(String path) |
protected CompletableFuture<Void> |
deleteAsync(String path) |
protected static void |
deleteRecursive(BaseResources resources,
String pathRoot) |
protected boolean |
exists(String path) |
protected Optional<T> |
get(String path) |
protected CompletableFuture<Optional<T>> |
getAsync(String path) |
protected List<String> |
getChildren(String path) |
protected CompletableFuture<List<String>> |
getChildrenAsync(String path) |
int |
getOperationTimeoutSec() |
protected static String |
joinPath(String... parts) |
protected static List<String> |
listSubTreeBFS(BaseResources resources,
String pathRoot) |
protected void |
set(String path,
Function<T,T> modifyFunction) |
protected CompletableFuture<Void> |
setAsync(String path,
Function<T,T> modifyFunction) |
protected void |
setWithCreate(String path,
Function<Optional<T>,T> createFunction) |
protected CompletableFuture<Void> |
setWithCreateAsync(String path,
Function<Optional<T>,T> createFunction) |