Listener type aliases
This is the collection of listener type aliases within the store
module. There are 11 listener type aliases in total.
TablesListener
The TablesListener
type describes a function that is used to listen to changes to the whole Store
.
TableIdsListener
The TableIdsListener
type describes a function that is used to listen to changes to the Table
Ids
in the Store
.
TableListener
The TableListener
type describes a function that is used to listen to changes to a Table
.
RowIdsListener
The RowIdsListener
type describes a function that is used to listen to changes to the Row
Ids
in a Table
.
RowListener
The RowListener
type describes a function that is used to listen to changes to a Row
.
CellIdsListener
The CellIdsListener
type describes a function that is used to listen to changes to the Cell
Ids
in a Row
.
CellChange
The CellChange
type describes a Cell
's changes during a transaction.
CellListener
The CellListener
type describes a function that is used to listen to changes to a Cell
.
GetCellChange
The GetCellChange
type describes a function that returns information about any Cell
's changes during a transaction.
InvalidCellListener
The InvalidCellListener
type describes a function that is used to listen to attempts to set invalid data to a Cell
.
TransactionListener
The TransactionListener
type describes a function that is used to listen to the completion of a transaction for the Store
.