* Sends a message based on the provided action and topic
(message: Message, allowBuffering: boolean = true)
| 64 | * Sends a message based on the provided action and topic |
| 65 | */ |
| 66 | public sendAckMessage (message: Message, allowBuffering: boolean = true): void { |
| 67 | this.services.monitoring.onMessageSend(message) |
| 68 | this.sendBuiltMessage(this.getAckMessage(message), allowBuffering) |
| 69 | } |
| 70 | |
| 71 | public abstract getMessage (message: Message): SerializedType |
| 72 | public abstract getAckMessage (message: Message): SerializedType |
nothing calls this directly
no test coverage detected