Package com.db4o.internal.btree
Interface BTreeStructureListener
-
- All Known Implementing Classes:
BTree
public interface BTreeStructureListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notifyCountChanged(Transaction trans, BTreeNode node, int diff)
void
notifyDeleted(Transaction trans, BTreeNode node)
void
notifySplit(Transaction trans, BTreeNode originalNode, BTreeNode newRightNode)
-
-
-
Method Detail
-
notifySplit
void notifySplit(Transaction trans, BTreeNode originalNode, BTreeNode newRightNode)
-
notifyDeleted
void notifyDeleted(Transaction trans, BTreeNode node)
-
notifyCountChanged
void notifyCountChanged(Transaction trans, BTreeNode node, int diff)
-
-