I am trying to understand why a flatmap() is used on the response
stream, in this post, for example (copy pasted directly from the reference)
final ClientRequest request = ClientRequest.GET(url)
.accept(MediaType.TEXT_EVENT_STREAM).build();
Flux<Alert> alerts = webClient.exchange(request)
.flatMap(response -> response.bodyToFlux(Alert.class));
AFAIK, a flatmap
applied on a stream produces an arbitrary number of values (0...n) for each input value (in the stream). So a flatmap takes a function that produces a stream.
A flux emits 0 or more items, and then optionally either completing or erroring.
So what exactly is happening on the response stream? Is this the function that takes the response stream, and emits 0 or more objects of the class Alert? So if we subscribe
to alerts
, we can get them over the web client in a reactive manner. Can someone clarify if I am correct, please?