MCPcopy Create free account
hub / github.com/apache/cassandra-nodejs-driver / readShortBytes

Method readShortBytes

lib/readers.js:190–197  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

188 }
189
190 readShortBytes() {
191 const length = this.readShort();
192 if (length < 0) {
193 return null;
194 }
195 this.checkOffset(length);
196 return this.read(length);
197 }
198
199 /**
200 * Reads an associative array of strings as keys and bytes as values

Callers 3

readMetadataMethod · 0.95
readErrorMethod · 0.95
streams.jsFile · 0.80

Calls 3

readShortMethod · 0.95
checkOffsetMethod · 0.95
readMethod · 0.95

Tested by

no test coverage detected