Fix MessagingGateway for reactive reply type

* Upgrade dependencies to be ready for release
This commit is contained in:
Artem Bilan
2020-06-23 14:26:11 -04:00
parent 3bb445e133
commit 9367d7f4de
5 changed files with 32 additions and 28 deletions

View File

@@ -112,7 +112,7 @@ public class RSocketDslTests {
return IntegrationFlows
.from(RSockets.inboundGateway("/uppercase")
.interactionModels(RSocketInteractionModel.requestChannel))
.<Flux<String>>handle((payload, headers) -> payload.map(String::toUpperCase), e -> e.async(true))
.<Flux<String>, Flux<String>>transform((flux) -> flux.map(String::toUpperCase))
.get();
}