* Schedules a function to run after pulse propagation completes. * @param {function} func - The function to run.
(func)
| 108183 | * Schedules a function to run after pulse propagation completes. |
| 108184 | * @param {function} func - The function to run. |
| 108185 | */ runAfter (func) { |
| 108186 | this.dataflow.runAfter(func); |
| 108187 | }, |
| 108188 | /** |
| 108189 | * Indicates if tuples have been added, removed or modified. |
| 108190 | * @param {number} [flags] - The tuple types (ADD, REM or MOD) to query. |