-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mergeScan drops accumulator with async merging source #6612
Comments
I think it's as expected. From the docs of
If you were to change your source to be: Rx.merge(Rx.range(1,3), Rx.timer(1000)) You will see how then it will emit |
Thanks for the detailed explain of current behavior, however I think it would be unfortunate been deliberately designed to differentiate between sync / async merging target, rather it's an oversight in spec coverage, for example in usage of:
As in your explanation of each round |
In docs:
|
The issue is not about being sync or async but rather delay. If you take your original code with It's just semantics. The Your issue also gets solved in this example: interval(100).pipe(
take(3),
mergeScan((acc, n) =>
of([...acc, n]).pipe(
delay(5),
),
[0]
)
) And this is all async. In this case, |
I agree, then it'd became user's duty to maintain it running in order from both up-stream and down-stream (i.e. subsequential), which alternatively just set concurrent to Thinking more on this, I realize it's impossible to have parallel mergeScan :: (c -> a -> Obs c) -> c -> Obs a -> Obs c Instead you need: mergeReduce :: (a -> Obs b) -> (c -> b -> c) -> c -> Obs a -> Obs c At this point it turns out no longer a bug report for |
Wouldn't this: mergeReduce :: (a -> Obs b) -> (c -> b -> c) -> c -> Obs a -> Obs c Just be: source$.pipe(
mergeMap(v => of(v).pipe(delay(5))),
scan((acc, v) => [...acc, v], [])
) If that's the case I don't think we need another operator for something that can be composed from two others. |
You are right! Who'd thought this
I have two taken:
|
I think that there are some incorrect presumptions with mergeScan: I think that the only solution is that the accumulator be called when the previous value has received. |
The result of mergeMap is needed to start a new |
@hgaleh myself I'm not sure what's the purpose of But I think
Yes, I know |
@imcotton const result = e1.pipe(mergeScan((acc, x) => of(acc.concat(x)).pipe(delay(t)), [] as string[])); acc = []; x = 'b'; acc.concat(x) = ['b']; t = 5
acc = []; x = 'c'; acc.concat(x) = ['c']
acc = ['b']; x = 'd'; acc.concat(x) = ['b', 'd']
acc = ['c']; x = 'e'; acc.concat(x) = ['c', 'e']
acc = ['b', 'd']; x = 'f'; acc.concat(x) = ['b', 'd', 'f']
acc = ['c', 'e']; x = 'g'; acc.concat(x) = ['c', 'e', 'g'] @benlesh Dear benlesh, is this behaviour really expected? If so, we should drop this bug! Because I see tests that exactly require this type of result. |
What if I told you all that That said. changing this now would constitute a breaking change for sure. |
Bug Report
Current Behavior
sync
async
Expected behavior
Async accumulating as well as synced one.
Reproduction
stackblitz
Environment
Possible Solution
Additional context/Screenshots
#2737
The text was updated successfully, but these errors were encountered: