Package org.apache.bookkeeper.bookie
Class EntryKey
- java.lang.Object
-
- org.apache.bookkeeper.bookie.EntryKey
-
- Direct Known Subclasses:
EntryKeyValue
public class EntryKey extends java.lang.ObjectAnEntryKeyrepresents an entry in a ledger, identified byledgerIdandentryId.This class is mainly used in
SortedLedgerStoragefor managing and sorting the entries in the memtable.
-
-
Field Summary
Fields Modifier and Type Field Description static KeyComparatorCOMPARATORComparator for the key portion.(package private) longentryId(package private) longledgerId
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)longgetEntryId()longgetLedgerId()inthashCode()
-
-
-
Field Detail
-
ledgerId
long ledgerId
-
entryId
long entryId
-
COMPARATOR
public static final KeyComparator COMPARATOR
Comparator for the key portion.
-
-