()
| 618 | } |
| 619 | |
| 620 | #recomputeMinCursor() { |
| 621 | const { minCursor, minCursorConsumers } = getMinCursor( |
| 622 | this.#consumers, this.#bufferStart + this.#buffer.length); |
| 623 | this.#cachedMinCursor = minCursor; |
| 624 | this.#cachedMinCursorConsumers = minCursorConsumers; |
| 625 | } |
| 626 | |
| 627 | #deleteConsumerFromMin(consumer) { |
| 628 | if (consumer.cursor === this.#cachedMinCursor) { |
no test coverage detected