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
closesReactiveX#1285
BREAKING CHANGE: Subject.create arguments have been swapped to match Rx
4 signature. `Subject.create(observable, observer)` is now
`Subject.create(observer, observable)`
Current interface for
Subject::Create()
is defined asSubject::Create(source: Observable<T>, destination: Observer<T>)
, parameter order is reversed to RxJS 4(https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/subjects/subject.md#rxsubjectcreateobserver-observable).Per #1241, it's not intended and order could be changed to align with existing behavior.
The text was updated successfully, but these errors were encountered: