MCPcopy Index your code
hub / github.com/nodejs/node / readMore

Method readMore

deps/undici/undici.js:7236–7244  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7234 this.readMore();
7235 }
7236 readMore() {
7237 while (!this.paused && this.ptr) {
7238 const chunk = this.socket.read();
7239 if (chunk === null) {
7240 break;
7241 }
7242 this.execute(chunk);
7243 }
7244 }
7245 /**
7246 * @param {Buffer} chunk
7247 */

Callers 3

resumeMethod · 0.45
onHttpSocketReadableFunction · 0.45
resumeH1Function · 0.45

Calls 2

readMethod · 0.45
executeMethod · 0.45

Tested by

no test coverage detected