DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
interface ICreateBuilder {
ICreateBuilder withEnsembleSize(...);
ICreateBuilder withWriteQuorumSize(...);
...
// old style callbacks
void execute(CreateCallback callback, Object ctx);
// support java8 completable future
CompletableFuture<IWriteHandler> executeapply();
// sync method
IWriteHandler create() throws BKException, InterruptedException;
} |
...