-
Notifications
You must be signed in to change notification settings - Fork 150
Update to RxSwift 2.0 #19
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
Conversation
|
Cool! FYI Swift's type inference is pretty powerful, so you can write things like |
|
Thanks, I forgot all about that. edit: Looks like it doesn't like it outside of return statements. Swift ignores whitespace to tack on a method call on an object. let thing1 = Observable.just(1)
.delaySubscription(2.0, scheduler: SplatoonScheduler.instance) |
|
Updated to 2.0.0 proper. I'm having some issues resolving the error though 😕, The test failure is on Things I checked:
Any help would be greatly appreciated 😄 |
|
Cool, taking a look now 👍 |
|
So the failure is happening intermittently; if you run only the failing test, it works. Looking into this more now... |
|
Using |
I experienced that as well but worried it was an issue further down the chain. |
|
Cool, so I added a check that makes it clear that the test waits for an Everything else looks 👌 I'd just like the Thanks again for your work! |
|
I don't see any immediate issues with the enabled check! Thanks for looking into it, I'll make those changes shortly. |
|
Shortened static functions to |
|
Fab 🎉 |

just->Observable.justVariableis no longer a directObservableTypeObservable.empty()->Observable.emptyMainScheduler.sharedInstance->MainScheduler.instancecreate->Observable.createcombineLatest->Observable.combineLatestRefs Update to RxSwift RC #18