Open danschultz opened 9 years ago
Contain the last event from the source stream for each interval.
var stream = source.throttle(new Duration(seconds: 2)); stream.listen(print); source: abcde------abcde source.throttled(2): --b--d--e----b--d--e
Depends on #18
Contain the last event from the source stream for each interval.