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
Expected behavior:
A group of arguments is expected in subscribe (here expected ['a', 'b', 'c']). Actual behavior:
Only the first argument is emtted (here 'a'). Additional information:
I think it could be common to create Observables from events and a lot of events pass more than one arguments in its callback functions. It is useful to let rxjs collect all of the arguments and pass them to subscribe. If I am wrong here about how to use rxjs in this situation, please give me a hint how I should do it correctly or which other operators should be used for events with multiple arguments. Thanks a lot!
The text was updated successfully, but these errors were encountered:
raycarter
added a commit
to raycarter/rxjs
that referenced
this issue
Nov 5, 2017
RxJS version:
5.5.2
Code to reproduce:
Expected behavior:
A group of arguments is expected in
subscribe
(here expected ['a', 'b', 'c']).Actual behavior:
Only the first argument is emtted (here 'a').
Additional information:
I think it could be common to create Observables from events and a lot of events pass more than one arguments in its callback functions. It is useful to let rxjs collect all of the arguments and pass them to
subscribe
. If I am wrong here about how to use rxjs in this situation, please give me a hint how I should do it correctly or which other operators should be used for events with multiple arguments. Thanks a lot!The text was updated successfully, but these errors were encountered: