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 voidnotifyCountChanged(Transaction trans, BTreeNode node, int diff)voidnotifyDeleted(Transaction trans, BTreeNode node)voidnotifySplit(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)
-
-