(
offset: number,
length: number,
bytes: ArrayBuffer,
)
| 279 | } |
| 280 | |
| 281 | #parseNotificationMessage( |
| 282 | offset: number, |
| 283 | length: number, |
| 284 | bytes: ArrayBuffer, |
| 285 | ) { |
| 286 | this.#reader.setBuffer(offset, bytes) |
| 287 | const processId = this.#reader.int32() |
| 288 | const channel = this.#reader.cstring() |
| 289 | const payload = this.#reader.cstring() |
| 290 | return new NotificationResponseMessage(length, processId, channel, payload) |
| 291 | } |
| 292 | |
| 293 | #parseRowDescriptionMessage( |
| 294 | offset: number, |
no test coverage detected