-
Notifications
You must be signed in to change notification settings - Fork 579
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
Reactive cleanup #1572
Reactive cleanup #1572
Conversation
* Tests clean-up Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
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.
LGTM
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
Since you reference the PR from the changelog, could you put in the description about what to use instead? Removal of processor-like operatorsThe formerly public // before
// ------
Flow.Publisher<Integer> source = ...
MappingProcessor<Integer, String> mapper = new MappingProcessor<>(Integer::toString);
source.subscribe(mapper);
mapper.subscribe(subscriber);
// after
// -----
Flow.Publisher<Integer> source = ...
Multi.from(source)
.map(Integer::toString)
.subscribe(subscriber) Removal of
|
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
@akarnokd great thx! done |
No description provided.