Uses of Interface
org.apache.bookkeeper.client.AsyncCallback.ReadCallback
-
Packages that use AsyncCallback.ReadCallback Package Description org.apache.bookkeeper.client BookKeeper Client. -
-
Uses of AsyncCallback.ReadCallback in org.apache.bookkeeper.client
Classes in org.apache.bookkeeper.client that implement AsyncCallback.ReadCallback Modifier and Type Class Description (package private) static class
SyncCallbackUtils.SyncReadCallback
Methods in org.apache.bookkeeper.client with parameters of type AsyncCallback.ReadCallback Modifier and Type Method Description void
LedgerHandle. asyncBatchReadEntries(long startEntry, int maxCount, long maxSize, AsyncCallback.ReadCallback cb, java.lang.Object ctx)
Read a sequence of entries in asynchronously.(package private) void
LedgerHandle. asyncBatchReadEntriesInternal(long startEntry, int maxCount, long maxSize, AsyncCallback.ReadCallback cb, java.lang.Object ctx, boolean isRecoveryRead)
void
LedgerHandle. asyncBatchReadUnconfirmedEntries(long startEntry, int maxCount, long maxSize, AsyncCallback.ReadCallback cb, java.lang.Object ctx)
Read a sequence of entries asynchronously, allowing to read after the LastAddConfirmed range.void
LedgerHandle. asyncReadEntries(long firstEntry, long lastEntry, AsyncCallback.ReadCallback cb, java.lang.Object ctx)
Read a sequence of entries asynchronously.(package private) void
LedgerHandle. asyncReadEntriesInternal(long firstEntry, long lastEntry, AsyncCallback.ReadCallback cb, java.lang.Object ctx, boolean isRecoveryRead)
void
LedgerHandle. asyncReadLastEntry(AsyncCallback.ReadCallback cb, java.lang.Object ctx)
void
ReadOnlyLedgerHandle. asyncReadLastEntry(AsyncCallback.ReadCallback cb, java.lang.Object ctx)
void
LedgerHandle. asyncReadUnconfirmedEntries(long firstEntry, long lastEntry, AsyncCallback.ReadCallback cb, java.lang.Object ctx)
Read a sequence of entries asynchronously, allowing to read after the LastAddConfirmed range.
-