Uses of Interface
edu.caltech.nanodb.server.RowEventListener
-
Packages that use RowEventListener Package Description edu.caltech.nanodb.indexes edu.caltech.nanodb.relations This package contains the basic data-types for representing relations in NanoDB.edu.caltech.nanodb.server -
-
Uses of RowEventListener in edu.caltech.nanodb.indexes
Classes in edu.caltech.nanodb.indexes that implement RowEventListener Modifier and Type Class Description class
IndexUpdater
This class implements theRowEventListener
interface to make sure that all indexes on an updated table are kept up to date. -
Uses of RowEventListener in edu.caltech.nanodb.relations
Classes in edu.caltech.nanodb.relations that implement RowEventListener Modifier and Type Class Description class
DatabaseConstraintEnforcer
This class enforces all database constraints on the database schema, including NOT NULL constraints, primary key/unique constraints, and foreign key constraints. -
Uses of RowEventListener in edu.caltech.nanodb.server
Fields in edu.caltech.nanodb.server with type parameters of type RowEventListener Modifier and Type Field Description private java.util.ArrayList<RowEventListener>
EventDispatcher. rowEventListeners
A list of listeners that are registered to receive row event notifications.Methods in edu.caltech.nanodb.server with parameters of type RowEventListener Modifier and Type Method Description void
EventDispatcher. addRowEventListener(RowEventListener listener)
Add another row-event listener to the event dispatcher.
-