Created
November 28, 2019 13:17
-
-
Save jeroenr/34064328fd73be443564bedafca174e5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Service { | |
Flux<String> findAll(); | |
Mono<Void> operation(String s); | |
} | |
class Foo { | |
private final Service service; | |
Flux<Void> problem() { | |
return service.findAll() | |
.flatMap(service::operation); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment