* 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.
()
| 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. |
nothing calls this directly
no test coverage detected