| Package | Description |
|---|---|
| org.apache.directory.server.core.partition.impl.btree.jdbm | |
| org.apache.directory.server.ldap.replication.provider |
| Modifier and Type | Class and Description |
|---|---|
class |
JdbmMasterTable
The master table used to store the Attributes of entries.
|
| Modifier and Type | Field and Description |
|---|---|
protected JdbmTable<java.lang.String,java.lang.String> |
JdbmMasterTable.adminTbl |
protected JdbmTable<K,java.lang.String> |
JdbmIndex.forward
the forward btree where the btree key is the value of the indexed attribute and
the value of the btree is the entry id of the entry containing an attribute with
that value
|
protected JdbmTable<java.lang.String,K> |
JdbmIndex.reverse
the reverse btree where the btree key is the entry id of the entry containing a
value for the indexed attribute, and the btree value is the value of the indexed
attribute
|
private JdbmTable<K,V> |
DupsCursor.table
The JDBM backed table this Cursor traverses over.
|
private JdbmTable<K,V> |
DupsContainerCursor.table
The JDBM table we are building a cursor over
|
private JdbmTable<K,V> |
NoDupsCursor.table |
| Constructor and Description |
|---|
DupsContainerCursor(JdbmTable<K,V> table)
Creates a Cursor over the tuples of a JDBM table.
|
DupsCursor(JdbmTable<K,V> table) |
NoDupsCursor(JdbmTable<K,V> table)
Creates a Cursor over the tuples of a JDBM table.
|
| Modifier and Type | Field and Description |
|---|---|
private JdbmTable<java.lang.String,ReplicaEventMessage> |
ReplicaJournalCursor.journal
the event log journal
|
private JdbmTable<java.lang.String,ReplicaEventMessage> |
ReplicaEventLog.journal
The Journal of modifications
|
| Constructor and Description |
|---|
ReplicaJournalCursor(JdbmTable<java.lang.String,ReplicaEventMessage> journal,
java.lang.String consumerCsn)
Creates a cursor on top of the given journal
|