(key: string, message: string)
| 204 | } |
| 205 | |
| 206 | private async sendRaw(key: string, message: string): Promise<void> { |
| 207 | await this.connectPromise; |
| 208 | await this.producer.send({ |
| 209 | topic: this.config.topic, |
| 210 | messages: [{ key, value: message }], |
| 211 | }); |
| 212 | } |
| 213 | } |