MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / desiredSize

Method desiredSize

out/cli.cjs:13208–13213  ·  view source on GitHub ↗

* Returns the desired size to fill the controlled stream's internal queue. It can be negative, if the queue is * over-full. An underlying source ought to use this information to determine when and how to apply backpressure.

()

Source from the content-addressed store, hash-verified

13206 * over-full. An underlying source ought to use this information to determine when and how to apply backpressure.
13207 */
13208 get desiredSize() {
13209 if (!IsReadableStreamDefaultController(this)) {
13210 throw defaultControllerBrandCheckException$1("desiredSize");
13211 }
13212 return ReadableStreamDefaultControllerGetDesiredSize(this);
13213 }
13214 /**
13215 * Closes the controlled readable stream. Consumers will still be able to read any previously-enqueued chunks from
13216 * the stream, but once those are read, the stream will become closed.

Callers

nothing calls this directly

Tested by

no test coverage detected