-
Notifications
You must be signed in to change notification settings - Fork 129
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
Simplify Uni to Multi bridge (again) #632
Conversation
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.
Just asked a question about Multi.
import io.smallrye.mutiny.operators.AbstractUni; | ||
import io.smallrye.mutiny.subscription.UniSubscriber; | ||
import io.smallrye.mutiny.subscription.UniSubscription; | ||
|
||
public final class UniToMultiPublisher<T> extends AbstractMulti<T> { | ||
public final class UniToMultiPublisher<T> implements Publisher<T> { |
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.
What's the reason to not be a Multi
directly?
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.
I thought it's safer to have the Infrastructure
involved again
Codecov Report
@@ Coverage Diff @@
## main #632 +/- ##
============================================
+ Coverage 89.95% 90.26% +0.30%
- Complexity 3016 3028 +12
============================================
Files 395 395
Lines 11829 11825 -4
Branches 1478 1480 +2
============================================
+ Hits 10641 10674 +33
+ Misses 611 588 -23
+ Partials 577 563 -14
|
No description provided.