Uses of Interface
org.apache.bookkeeper.mledger.Entry
Packages that use Entry
Package
Description
-
Uses of Entry in org.apache.bookkeeper.mledger
Methods in org.apache.bookkeeper.mledger that return EntryModifier and TypeMethodDescriptionManagedCursor.getNthEntry(int n, ManagedCursor.IndividualDeletedEntries deletedEntries) Get 'N'th entry from the mark delete position in the cursor without updating any cursor positions.Methods in org.apache.bookkeeper.mledger that return types with arguments of type EntryModifier and TypeMethodDescriptionManagedCursor.readEntries(int numberOfEntriesToRead) Read entries from the ManagedLedger, up to the specified number.ReadOnlyCursor.readEntries(int numberOfEntriesToRead) Read entries from the ManagedLedger, up to the specified number.ManagedCursor.readEntriesOrWait(int numberOfEntriesToRead) Read entries from the ManagedLedger, up to the specified number.ManagedCursor.readEntriesOrWait(int maxEntries, long maxSizeBytes) Read entries from the ManagedLedger, up to the specified number and size.ManagedCursor.replayEntries(Set<? extends Position> positions) Read the specified set of positions from ManagedLedger.Methods in org.apache.bookkeeper.mledger with parameters of type EntryModifier and TypeMethodDescriptionLedgerOffloader.OffloadHandle.offerEntry(Entry entry) The caller should manually release entry no matter what the offer result is.LedgerOffloader.OffloadHandle.offerEntryAsync(Entry entry) voidAsyncCallbacks.ReadEntryCallback.readEntryComplete(Entry entry, Object ctx) Method parameters in org.apache.bookkeeper.mledger with type arguments of type EntryModifier and TypeMethodDescriptionvoidManagedCursor.asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, Object ctx) Find the newest entry that matches the given predicate.voidManagedCursor.asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, Object ctx, boolean isFindFromLedger) Find the newest entry that matches the given predicate.ManagedLedger.asyncFindPosition(Predicate<Entry> predicate) Find position by sequenceId.ManagedCursor.findNewestMatching(Predicate<Entry> condition) Find the newest entry that matches the given predicate.ManagedCursor.findNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition) Find the newest entry that matches the given predicate.ReadOnlyCursor.findNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition) Find the newest entry that matches the given predicate.voidAsyncCallbacks.ReadEntriesCallback.readEntriesComplete(List<Entry> entries, Object ctx) default CompletableFuture<ScanOutcome>ManagedCursor.scan(Optional<Position> startingPosition, Predicate<Entry> condition, int batchSize, long maxEntries, long timeOutMs) Scan the cursor from the current position up to the end.voidManagedCursor.trimDeletedEntries(List<Entry> entries) Trim delete entries for the given entries. -
Uses of Entry in org.apache.bookkeeper.mledger.impl
Classes in org.apache.bookkeeper.mledger.impl that implement EntryMethods in org.apache.bookkeeper.mledger.impl that return EntryModifier and TypeMethodDescriptionManagedCursorImpl.getNthEntry(int n, ManagedCursor.IndividualDeletedEntries deletedEntries) Methods in org.apache.bookkeeper.mledger.impl that return types with arguments of type EntryModifier and TypeMethodDescriptionManagedCursorImpl.readEntries(int numberOfEntriesToRead) ManagedCursorImpl.readEntriesOrWait(int numberOfEntriesToRead) ManagedCursorImpl.readEntriesOrWait(int numberOfEntriesToRead, long maxSizeBytes) ManagedCursorImpl.replayEntries(Set<? extends Position> positions) Method parameters in org.apache.bookkeeper.mledger.impl with type arguments of type EntryModifier and TypeMethodDescriptionvoidManagedCursorImpl.asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, Object ctx) voidManagedCursorImpl.asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, Object ctx, boolean isFindFromLedger) ManagedLedgerImpl.asyncFindPosition(Predicate<Entry> predicate) ManagedCursorImpl.findNewestMatching(Predicate<Entry> condition) ManagedCursorImpl.findNewestMatching(ManagedCursor.FindPositionConstraint constraint, Predicate<Entry> condition) ManagedCursorImpl.scan(Optional<Position> position, Predicate<Entry> condition, int batchSize, long maxEntries, long timeOutMs) voidManagedCursorImpl.trimDeletedEntries(List<Entry> entries) -
Uses of Entry in org.apache.bookkeeper.mledger.impl.cache
Methods in org.apache.bookkeeper.mledger.impl.cache that return Entry -
Uses of Entry in org.apache.bookkeeper.mledger.util
Method parameters in org.apache.bookkeeper.mledger.util with type arguments of type EntryModifier and TypeMethodDescriptionstatic CompletableFuture<Position>ManagedLedgerImplUtils.asyncGetLastValidPosition(ManagedLedgerImpl ledger, Predicate<Entry> predicate, PositionImpl startPosition) Reverse find last valid position one-entry by one-entry.