-
Notifications
You must be signed in to change notification settings - Fork 99
Support for v5.0.0 #105
Comments
@mickeyvip yes, but it will be built in at some point. cc @trxcllnt who is working on just that, although some things need to be addressed such as how |
@mickeyvip @mattpodwysocki so far ReactiveX/RxJS has You should be able to access these via |
@trxcllnt are we planning on bringing all of the DOM stuff over relatively soon? |
@mattpodwysocki we haven't filed issues for the missing items yet, but we should. I forgot we also already have the microtask scheduler (aka the asapScheduler) implemented. From what I can tell, we're missing the following items: edit: also, it seems the |
@mattpodwysocki, @trxcllnt, thank you so much! |
Is there any way to use it with rxjs 5 now? |
@franciclo If you have code written with Rx4 naming conventions, the quickest solution is to alias from new to old up front. Here's what we're currently aliasing in our projects at work: import Rx from 'rxjs';
Rx.Observable.return = (value) => Rx.Observable.of(value);
Rx.Subject.prototype.onNext = Rx.Subject.prototype.next;
Rx.Subject.prototype.onError = Rx.Subject.prototype.error;
Rx.Subject.prototype.onCompleted = Rx.Subject.prototype.complete;
Rx.Subject.prototype.dispose = Rx.Subscriber.prototype.unsubscribe;
Rx.AsyncSubject.prototype.onNext = Rx.AsyncSubject.prototype.next;
Rx.AsyncSubject.prototype.onCompleted = Rx.AsyncSubject.prototype.complete;
Rx.BehaviorSubject.prototype.onNext = Rx.BehaviorSubject.prototype.next;
Rx.ReplaySubject.prototype.onNext = Rx.ReplaySubject.prototype.next;
Rx.Subscriber.prototype.onNext = Rx.Subscriber.prototype.next;
Rx.Subscriber.prototype.onError = Rx.Subscriber.prototype.error;
Rx.Subscriber.prototype.onCompleted = Rx.Subscriber.prototype.complete;
Rx.Subscriber.prototype.dispose = Rx.Subscriber.prototype.unsubscribe;
Rx.Subscription.prototype.dispose = Rx.Subscription.prototype.unsubscribe; |
Right, that will patch it up, thank you for your time |
Hello.
The version 5.0.0 of
Rx
(https://github.com/ReactiveX/RxJS) is in beta.Will
RxJS-DOM
be supporting the new version?Thank you.
The text was updated successfully, but these errors were encountered: