-
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
1.x: Add Completable.andThen(Single) #3799
Conversation
} | ||
}; | ||
|
||
final SerialSubscription serial = new SerialSubscription(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have to add serial to t .
thanks for your review. fixed |
* Returns a Single which will subscribe to this Completable and once that is completed then | ||
* will subscribe to the {@code next} Single. An error event from this Completable will be | ||
* propagated to the downstream subscriber and will result in skipping the subscription of the | ||
* Observable. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Observable -> Single
Looks good! 👍 Just few small things to fix. |
@artem-zinnatullin @akarnokd thanks for your review. i'll update this soon. |
Updated and rebased. |
👍 |
1 similar comment
👍 |
#3730