* Sends a message based on the provided action and topic
(message: { topic: TOPIC, action: CONNECTION_ACTION } | Message, allowBuffering: boolean = true)
| 56 | * Sends a message based on the provided action and topic |
| 57 | */ |
| 58 | public sendMessage (message: { topic: TOPIC, action: CONNECTION_ACTION } | Message, allowBuffering: boolean = true): void { |
| 59 | this.services.monitoring.onMessageSend(message) |
| 60 | this.sendBuiltMessage(this.getMessage(message), allowBuffering) |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Sends a message based on the provided action and topic |
nothing calls this directly
no test coverage detected