* Handle a new WS client message event being sent.
(appId: string, sentMessage: any)
| 53 | * Handle a new WS client message event being sent. |
| 54 | */ |
| 55 | markWsMessageSent(appId: string, sentMessage: any): void { |
| 56 | if (this.server.options.metrics.enabled) { |
| 57 | this.driver.markWsMessageSent(appId, sentMessage); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Handle a new WS client message being received. |
nothing calls this directly
no test coverage detected