Uses of Interface
edu.caltech.nanodb.server.CommandEventListener
-
Packages that use CommandEventListener Package Description edu.caltech.nanodb.server edu.caltech.nanodb.transactions This package contains classes for managing transactions at the logical level, such as concurrency control and isolation, deadlock detection and aborting transactions. -
-
Uses of CommandEventListener in edu.caltech.nanodb.server
Fields in edu.caltech.nanodb.server with type parameters of type CommandEventListener Modifier and Type Field Description private java.util.ArrayList<CommandEventListener>
EventDispatcher. commandEventListeners
A list of listeners that are registered to receive command event notifications.Methods in edu.caltech.nanodb.server with parameters of type CommandEventListener Modifier and Type Method Description void
EventDispatcher. addCommandEventListener(CommandEventListener listener)
Add another command-event listener to the event dispatcher. -
Uses of CommandEventListener in edu.caltech.nanodb.transactions
Classes in edu.caltech.nanodb.transactions that implement CommandEventListener Modifier and Type Class Description class
TransactionStateUpdater
This implementation of theCommandEventListener
interface manages the transaction state enclosing each command executed by the database.
-