ResultRowIdsListener
The ResultRowIdsListener type describes a function that is used to listen to changes to the ResultRow Ids in a query's ResultTable.
(
queries: Queries,
tableId: Id,
getIdChanges: GetIdChanges | undefined,
): void| Type | Description | |
|---|---|---|
queries | Queries | A reference to the |
tableId | Id | The |
getIdChanges | GetIdChanges | undefined | |
| returns | void | This has no return value. |
A ResultRowIdsListener is provided when using the addResultRowIdsListener method. See that method for specific examples.
When called, a ResultRowIdsListener is given a reference to the Queries object, and the Id of the ResultTable whose ResultRow Ids changed (which is the same as the query Id).
You can create new query definitions within the body of this listener, though obviously be aware of the possible cascading effects of doing so.
Since
v2.0.0