Uses of Interface
org.apache.bookkeeper.mledger.Entry
-
Packages that use Entry Package Description org.apache.bookkeeper.mledger Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.org.apache.bookkeeper.mledger.impl Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. -
-
Uses of Entry in org.apache.bookkeeper.mledger
Methods in org.apache.bookkeeper.mledger that return Entry Modifier and Type Method Description EntryManagedCursor. 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 Entry Modifier and Type Method Description java.util.List<Entry>ManagedCursor. readEntries(int numberOfEntriesToRead)Read entries from the ManagedLedger, up to the specified number.java.util.List<Entry>ReadOnlyCursor. readEntries(int numberOfEntriesToRead)Read entries from the ManagedLedger, up to the specified number.java.util.List<Entry>ManagedCursor. readEntriesOrWait(int numberOfEntriesToRead)Read entries from the ManagedLedger, up to the specified number.java.util.List<Entry>ManagedCursor. readEntriesOrWait(int maxEntries, long maxSizeBytes)Read entries from the ManagedLedger, up to the specified number and size.java.util.List<Entry>ManagedCursor. replayEntries(java.util.Set<? extends Position> positions)Read the specified set of positions from ManagedLedger.Methods in org.apache.bookkeeper.mledger with parameters of type Entry Modifier and Type Method Description LedgerOffloader.OffloadHandle.OfferEntryResultLedgerOffloader.OffloadHandle. offerEntry(Entry entry)The caller should manually release entry no matter what the offer result is.java.util.concurrent.CompletableFuture<LedgerOffloader.OffloadHandle.OfferEntryResult>LedgerOffloader.OffloadHandle. offerEntryAsync(Entry entry)voidAsyncCallbacks.ReadEntryCallback. readEntryComplete(Entry entry, java.lang.Object ctx)Method parameters in org.apache.bookkeeper.mledger with type arguments of type Entry Modifier and Type Method Description voidManagedCursor. asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, com.google.common.base.Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, java.lang.Object ctx)Find the newest entry that matches the given predicate.java.util.concurrent.CompletableFuture<Position>ManagedLedger. asyncFindPosition(com.google.common.base.Predicate<Entry> predicate)Find position by sequenceId.PositionManagedCursor. findNewestMatching(com.google.common.base.Predicate<Entry> condition)Find the newest entry that matches the given predicate.PositionManagedCursor. findNewestMatching(ManagedCursor.FindPositionConstraint constraint, com.google.common.base.Predicate<Entry> condition)Find the newest entry that matches the given predicate.PositionReadOnlyCursor. findNewestMatching(ManagedCursor.FindPositionConstraint constraint, com.google.common.base.Predicate<Entry> condition)Find the newest entry that matches the given predicate.voidAsyncCallbacks.ReadEntriesCallback. readEntriesComplete(java.util.List<Entry> entries, java.lang.Object ctx)voidManagedCursor. trimDeletedEntries(java.util.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 Entry Modifier and Type Class Description classEntryImplMethods in org.apache.bookkeeper.mledger.impl that return Entry Modifier and Type Method Description static EntryEntryCacheManager. create(long ledgerId, long entryId, io.netty.buffer.ByteBuf data)EntryManagedCursorImpl. getNthEntry(int n, ManagedCursor.IndividualDeletedEntries deletedEntries)Methods in org.apache.bookkeeper.mledger.impl that return types with arguments of type Entry Modifier and Type Method Description java.util.List<Entry>ManagedCursorImpl. readEntries(int numberOfEntriesToRead)java.util.List<Entry>ManagedCursorImpl. readEntriesOrWait(int numberOfEntriesToRead)java.util.List<Entry>ManagedCursorImpl. readEntriesOrWait(int numberOfEntriesToRead, long maxSizeBytes)java.util.List<Entry>ManagedCursorImpl. replayEntries(java.util.Set<? extends Position> positions)Method parameters in org.apache.bookkeeper.mledger.impl with type arguments of type Entry Modifier and Type Method Description voidManagedCursorImpl. asyncFindNewestMatching(ManagedCursor.FindPositionConstraint constraint, com.google.common.base.Predicate<Entry> condition, AsyncCallbacks.FindEntryCallback callback, java.lang.Object ctx)java.util.concurrent.CompletableFuture<Position>ManagedLedgerImpl. asyncFindPosition(com.google.common.base.Predicate<Entry> predicate)PositionManagedCursorImpl. findNewestMatching(com.google.common.base.Predicate<Entry> condition)PositionManagedCursorImpl. findNewestMatching(ManagedCursor.FindPositionConstraint constraint, com.google.common.base.Predicate<Entry> condition)voidManagedCursorImpl. trimDeletedEntries(java.util.List<Entry> entries)
-