How to implement buffering with timeout in RX
- by Gaspar Nagy
I need to implement an event processing, that is done delayed when there are no new events arriving for a certain period. (I have to queue up a parsing task when the text buffer changed, but I don't want to start the parsing when the user is still typing.)
I'm new in RX, but as far as I see, I would need a combination of BufferWithTime and the…