(connection: Party.Connection, err: Error)
| 680 | } |
| 681 | |
| 682 | async invokeOnError(connection: Party.Connection, err: Error) { |
| 683 | assert(this.worker, "[onError] Worker not initialized."); |
| 684 | return this.worker.onError(connection, err); |
| 685 | } |
| 686 | |
| 687 | async invokeOnMessage( |
| 688 | connection: Party.Connection, |
no test coverage detected