Uses of Interface
org.apache.bookkeeper.client.AsyncCallback.CreateCallback
-
Packages that use AsyncCallback.CreateCallback Package Description org.apache.bookkeeper.client BookKeeper Client. -
-
Uses of AsyncCallback.CreateCallback in org.apache.bookkeeper.client
Classes in org.apache.bookkeeper.client that implement AsyncCallback.CreateCallback Modifier and Type Class Description (package private) static class
SyncCallbackUtils.SyncCreateAdvCallback
(package private) static class
SyncCallbackUtils.SyncCreateCallback
Fields in org.apache.bookkeeper.client declared as AsyncCallback.CreateCallback Modifier and Type Field Description (package private) AsyncCallback.CreateCallback
LedgerCreateOp. cb
Methods in org.apache.bookkeeper.client with parameters of type AsyncCallback.CreateCallback Modifier and Type Method Description void
BookKeeper. asyncCreateLedger(int ensSize, int writeQuorumSize, int ackQuorumSize, BookKeeper.DigestType digestType, byte[] passwd, AsyncCallback.CreateCallback cb, java.lang.Object ctx, java.util.Map<java.lang.String,byte[]> customMetadata)
Creates a new ledger asynchronously.void
BookKeeper. asyncCreateLedger(int ensSize, int writeQuorumSize, BookKeeper.DigestType digestType, byte[] passwd, AsyncCallback.CreateCallback cb, java.lang.Object ctx)
Creates a new ledger asynchronously.void
BookKeeper. asyncCreateLedgerAdv(int ensSize, int writeQuorumSize, int ackQuorumSize, BookKeeper.DigestType digestType, byte[] passwd, AsyncCallback.CreateCallback cb, java.lang.Object ctx, java.util.Map<java.lang.String,byte[]> customMetadata)
Creates a new ledger asynchronously and returnsLedgerHandleAdv
which can accept entryId.void
BookKeeper. asyncCreateLedgerAdv(long ledgerId, int ensSize, int writeQuorumSize, int ackQuorumSize, BookKeeper.DigestType digestType, byte[] passwd, AsyncCallback.CreateCallback cb, java.lang.Object ctx, java.util.Map<java.lang.String,byte[]> customMetadata)
Asynchronously creates a new ledger using the interface which accepts a ledgerId as input.Constructors in org.apache.bookkeeper.client with parameters of type AsyncCallback.CreateCallback Constructor Description LedgerCreateOp(BookKeeper bk, int ensembleSize, int writeQuorumSize, int ackQuorumSize, BookKeeper.DigestType digestType, byte[] passwd, AsyncCallback.CreateCallback cb, java.lang.Object ctx, java.util.Map<java.lang.String,byte[]> customMetadata, java.util.EnumSet<WriteFlag> writeFlags, BookKeeperClientStats clientStats)
Constructor.
-