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
Fields in org.apache.bookkeeper.client with type parameters of type LedgerEntries Modifier and Type Field Description protected java.util.concurrent.CompletableFuture<LedgerEntries>
ReadOpBase. future
Methods in org.apache.bookkeeper.client that return types with arguments of type LedgerEntries Modifier and Type Method Description java.util.concurrent.CompletableFuture<LedgerEntries>
LedgerHandle. batchReadAsync(long startEntry, int maxCount, long maxSize)
Read a sequence of entries in asynchronously.(package private) java.util.concurrent.CompletableFuture<LedgerEntries>
ReadOpBase. 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. batchRead(long startEntry, int maxCount, long maxSize)
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 default java.util.concurrent.CompletableFuture<LedgerEntries>
ReadHandle. batchReadAsync(long startEntry, int maxCount, long maxSize)
Read a sequence of entries asynchronously.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.
-