(localOperations: IResourceOpsCollect[])
| 687 | */ |
| 688 | @errorCapture<RoomService>() |
| 689 | syncOperations(localOperations: IResourceOpsCollect[]) { |
| 690 | localOperations.forEach((lop) => { |
| 691 | const collaEngine = this.collaEngineMap.get(lop.resourceId); |
| 692 | lop.operations.forEach((op) => collaEngine?.pushOpBuffer(op)); |
| 693 | }); |
| 694 | |
| 695 | this.nextSend(); |
| 696 | } |
| 697 | |
| 698 | /** |
| 699 | * Is it safe to close? |
no test coverage detected