-
Notifications
You must be signed in to change notification settings - Fork 34
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
Update RSocket to 1.0.1 #388
Conversation
.flatMapIterable(it -> it::iterator) | ||
.flatMapIterable(it -> { | ||
var iterator = it.iterator(); | ||
return () -> iterator; |
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.
can you give some insights on this expansion?
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.
there was a change in Reactor that made it call Iterable#iterator
two times (completely valid) but, in case of Streams, one can call Iterable#iterator
only once, hence the change :)
|
||
public interface RSocketServerConfigurer { | ||
|
||
void apply(RSocketServer server); |
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.
oh, thats great, would simplify auth plugin 👍🏻
No description provided.