StoreListenerStats
The StoreListenerStats
type describes the number of listeners registered with the Store
, and can be used for debugging purposes.
{
tables?: number;
tableIds?: number;
table?: number;
rowIds?: number;
row?: number;
cellIds?: number;
cell?: number;
invalidCell?: number;
}
Type | Description | |
---|---|---|
tables? | number | The number of TablesListeners registered with the |
tableIds? | number | The number of TableIdsListeners registered with the |
table? | number | The number of TableListeners registered with the |
rowIds? | number | The number of RowIdsListeners registered with the |
row? | number | The number of RowListeners registered with the |
cellIds? | number | The number of CellIdsListeners registered with the |
cell? | number | The number of CellListeners registered with the |
invalidCell? | number | The number of InvalidCellListeners registered with the |
The StoreListenerStats
object contains a breakdown of the different types of listener. Totals include both mutator and non-mutator listeners. A StoreListenerStats
object is returned from the getListenerStats method, and is only populated in a debug build.