Is there a way to use RxJs buffer without clearing the buffer when the closingNotifier emits or achieve the same result with other RxJs operators?
From https://rxjs.dev/api/operators/buffer:
Buffers the incoming Observable values until the given closingNotifier Observable emits a value, at which point it emits the buffer on the output Observable and starts a new buffer internally, awaiting the next time closingNotifier emits.
I want to do the same thing except continue buffering incoming values on the same buffer after the closingNotifier emits.