(event: MutationCacheNotifyEvent)
| 221 | } |
| 222 | |
| 223 | notify(event: MutationCacheNotifyEvent) { |
| 224 | notifyManager.batch(() => { |
| 225 | this.listeners.forEach((listener) => { |
| 226 | listener(event) |
| 227 | }) |
| 228 | }) |
| 229 | } |
| 230 | |
| 231 | resumePausedMutations(): Promise<unknown> { |
| 232 | const pausedMutations = this.getAll().filter((x) => x.state.isPaused) |