Uses of Interface
org.apache.bookkeeper.client.api.LedgerEntries
-
Packages that use LedgerEntries Package Description org.apache.bookkeeper.client BookKeeper Client.org.apache.bookkeeper.client.api BookKeeper Client Public API.org.apache.bookkeeper.client.impl BookKeeper Client implementation package. -
-
Uses of LedgerEntries in org.apache.bookkeeper.client
Methods in org.apache.bookkeeper.client that return types with arguments of type LedgerEntries Modifier and Type Method Description (package private) java.util.concurrent.CompletableFuture<LedgerEntries>
PendingReadOp. future()
java.util.concurrent.CompletableFuture<LedgerEntries>
LedgerHandle. readAsync(long firstEntry, long lastEntry)
Read a sequence of entries asynchronously.(package private) java.util.concurrent.CompletableFuture<LedgerEntries>
LedgerHandle. readEntriesInternalAsync(long firstEntry, long lastEntry, boolean isRecoveryRead)
java.util.concurrent.CompletableFuture<LedgerEntries>
LedgerHandle. readUnconfirmedAsync(long firstEntry, long lastEntry)
Read a sequence of entries asynchronously, allowing to read after the LastAddConfirmed range. -
Uses of LedgerEntries in org.apache.bookkeeper.client.api
Methods in org.apache.bookkeeper.client.api that return LedgerEntries Modifier and Type Method Description default LedgerEntries
ReadHandle. read(long firstEntry, long lastEntry)
Read a sequence of entries synchronously.default LedgerEntries
ReadHandle. readUnconfirmed(long firstEntry, long lastEntry)
Read a sequence of entries synchronously.Methods in org.apache.bookkeeper.client.api that return types with arguments of type LedgerEntries Modifier and Type Method Description java.util.concurrent.CompletableFuture<LedgerEntries>
ReadHandle. readAsync(long firstEntry, long lastEntry)
Read a sequence of entries asynchronously.java.util.concurrent.CompletableFuture<LedgerEntries>
ReadHandle. readUnconfirmedAsync(long firstEntry, long lastEntry)
Read a sequence of entries asynchronously, allowing to read after the LastAddConfirmed range. -
Uses of LedgerEntries in org.apache.bookkeeper.client.impl
Classes in org.apache.bookkeeper.client.impl that implement LedgerEntries Modifier and Type Class Description class
LedgerEntriesImpl
Ledger entries implementation.
-