You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would expect that with audit, if the source closes before the duration ends, we'd get the last value it captured. For whatever reason we decided not to do that ages ago, and I can't imagine why.
When the source completes, I think it should either:
If it has seen a value, wait for the duration to end, then emit the value and complete the result.
OR
Immediately emit the last value it saw (if any), then complete the result.
I'm inclined to say #1 makes the most sense. It's also the behavior of throttle.
The text was updated successfully, but these errors were encountered:
I would expect that with
audit
, if the source closes before the duration ends, we'd get the last value it captured. For whatever reason we decided not to do that ages ago, and I can't imagine why.When the source completes, I think it should either:
OR
I'm inclined to say #1 makes the most sense. It's also the behavior of throttle.
The text was updated successfully, but these errors were encountered: