Listener type aliases
This is the collection of listener type aliases within the store
module. There are 18 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
.
SortedRowIdsListener
The SortedRowIdsListener
type describes a function that is used to listen to changes to sorted 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
.
ValuesListener
The ValuesListener
type describes a function that is used to listen to changes to all the Values
in a Store
.
GetValueChange
The GetValueChange
type describes a function that returns information about any Value
's changes during a transaction.
InvalidValueListener
The InvalidValueListener
type describes a function that is used to listen to attempts to set invalid data to a Value
.
ValueChange
The ValueChange
type describes a Value
's changes during a transaction.
ValueIdsListener
The ValueIdsListener
type describes a function that is used to listen to changes to the Value
Ids
in a Store
.
ValueListener
The ValueListener
type describes a function that is used to listen to changes to a Value
.
TransactionListener
The TransactionListener
type describes a function that is used to listen to the completion of a transaction for the Store
.