I'm trying to create an observable using RxJS that does what is pictured.
- Grabs a value and waits a fixed period of time before getting the next one.
- The next one will be the last value emitted in the period of the wait, skipping the rest.
- If an wait interval goes by where no value was emitted, the next one should be grabbed immediately as the last example of the image depicts.
This should do the trick.