Handle incoming changes from a source collection
(
alias: string,
changes: Array<ChangeMessage<any, string | number>>,
)
| 635 | |
| 636 | /** Handle incoming changes from a source collection */ |
| 637 | private handleSourceChanges( |
| 638 | alias: string, |
| 639 | changes: Array<ChangeMessage<any, string | number>>, |
| 640 | ): void { |
| 641 | this.sendChangesToD2(alias, changes) |
| 642 | this.scheduleGraphRun(alias) |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * Schedule a graph run via the transaction-scoped scheduler. |
no test coverage detected