MCPcopy Create free account
hub / github.com/denodrivers/postgres / readInt32

Method readInt32

connection/packet.ts:46–50  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

44 }
45
46 readInt32(): number {
47 const value = readInt32BE(this.#buffer, this.#offset);
48 this.#offset += 4;
49 return value;
50 }
51
52 readByte(): number {
53 return this.readBytes(1)[0];

Callers 6

#authenticateMethod · 0.80
#authenticateWithSaslMethod · 0.80
parseBackendKeyMessageFunction · 0.80
parseRowDataMessageFunction · 0.80

Calls 1

readInt32BEFunction · 0.90

Tested by

no test coverage detected