(this._isShutdown)
| 335 | ...payload: OutgoingEvents[EventName] |
| 336 | ) { |
| 337 | if (this._isShutdown) { |
| 338 | console.warn( |
| 339 | `Cannot send message "${event}" through a Bridge that has been shutdown.`, |
| 340 | ); |
| 341 | return; |
| 342 | } |
| 343 | |
| 344 | // When we receive a message: |
| 345 | // - we add it to our queue of messages to be sent |
no outgoing calls
no test coverage detected