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 SummaryFields Modifier and Type Field Description static KeyComparatorCOMPARATORComparator for the key portion.(package private) longentryId(package private) longledgerId
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)longgetEntryId()longgetLedgerId()inthashCode()
 
- 
- 
- 
Field Detail- 
ledgerIdlong ledgerId 
 - 
entryIdlong entryId 
 - 
COMPARATORpublic static final KeyComparator COMPARATOR Comparator for the key portion.
 
- 
 
-