-
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
Expose concurrency parameter of mergeScan #868
Comments
Probably, yes. |
Cool, I'll try with expanding test coverage. |
Maybe I'm incorrect, came to curious if |
|
: Yes, that's part where I started this issue. I'll think bit more to bring up some code snippets if possible. |
It's simply my dumb understandings about questions above for usage of concurrency :( will continue work on this, thanks @Blesh . |
I can't think of any use cases for changing the concurrency of this, really. But I can see the utility of it. @trxcllnt, what's a use case for concurrency in mergeScan? |
- expose concurrency parameter to interface of mergeScan - expand test coverage to test concurrency works closes ReactiveX#868
- expose concurrency parameter to interface of mergeScan - expand test coverage to test concurrency works closes ReactiveX#868
- expose concurrency parameter to interface of mergeScan - expand test coverage to test concurrency works closes ReactiveX#868
@Blesh same as the case for |
@trxcllnt That's fair, I was just wondering more like "when would I use this"? That sort of use case. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
While
MergeScanOperator
has implementation to accept concurrency parametertype definition of
mergeScan
does not allow to use it.mergeScan<T, R>(project: (acc: R, x: T) => Observable<R>, seed: R)
.Would it be better to expose concurrency parameter?
The text was updated successfully, but these errors were encountered: