-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Pull 267 - Merge combineLatest #303
Pull 267 - Merge combineLatest #303
Conversation
…pull-267-combineLatest Conflicts: rxjava-core/src/main/java/rx/Observable.java rxjava-core/src/main/java/rx/operators/OperationCombineLatest.java
Pull 267 - Merge combineLatest
RxJava-pull-requests #173 SUCCESS |
I noticed there is no marble diagram in the documentation, I find these extremely helpful to understand how an operator works. Is |
It's different in that it doesn't keep the sources "synced". How do you create those diagrams? I'd draw one if I knew how... |
There's a marble diagram for combineLatest at: On Sat, Jul 20, 2013 at 1:37 AM, Joachim Hofer [email protected]:
|
Thanks, that clarifies it a lot! |
…eLatest Pull 267 - Merge combineLatest
Spent some time reviewing it and it seems good. Any bugs can be dealt with as people start playing with it instead of me holding this up as a pull request any longer since this exposes
combineLatest
inObservable
for I believe the first time and is thus a low risk to breaking any existing users.