Check if all source collections are in the ready state
()
| 785 | |
| 786 | /** Check if all source collections are in the ready state */ |
| 787 | private checkAllCollectionsReady(): boolean { |
| 788 | return Object.values(this.collections).every((collection) => |
| 789 | collection.isReady(), |
| 790 | ) |
| 791 | } |
| 792 | |
| 793 | /** |
| 794 | * Build subscription options for an alias based on whether it uses ordered |