(reader: BufferReader)
| 270 | } |
| 271 | |
| 272 | const parseNotificationMessage = (reader: BufferReader) => { |
| 273 | const processId = reader.int32() |
| 274 | const channel = reader.cstring() |
| 275 | const payload = reader.cstring() |
| 276 | return new NotificationResponseMessage(LATEINIT_LENGTH, processId, channel, payload) |
| 277 | } |
| 278 | |
| 279 | const parseRowDescriptionMessage = (reader: BufferReader) => { |
| 280 | const fieldCount = reader.int16() |
no test coverage detected