public static interface AsyncTable.CheckAndMutateWithFilterBuilder
Modifier and Type | Method and Description |
---|---|
CompletableFuture<Boolean> |
thenDelete(Delete delete) |
CompletableFuture<Boolean> |
thenMutate(RowMutations mutation) |
CompletableFuture<Boolean> |
thenPut(Put put) |
AsyncTable.CheckAndMutateWithFilterBuilder |
timeRange(TimeRange timeRange) |
AsyncTable.CheckAndMutateWithFilterBuilder timeRange(TimeRange timeRange)
timeRange
- time range to check.CompletableFuture<Boolean> thenPut(Put put)
put
- data to put if check succeedstrue
if the new put was executed, false
otherwise. The return value
will be wrapped by a CompletableFuture
.CompletableFuture<Boolean> thenDelete(Delete delete)
delete
- data to delete if check succeedstrue
if the new delete was executed, false
otherwise. The return
value will be wrapped by a CompletableFuture
.CompletableFuture<Boolean> thenMutate(RowMutations mutation)
mutation
- mutations to perform if check succeedsCompletableFuture
.Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.