DATAES-894 - Polishing.

Reformat code. Add author tag.

Original pull request: #498.
This commit is contained in:
Mark Paluch 2020-08-05 14:48:50 +02:00
parent 103bf9f1b9
commit 0cfb1b563e
No known key found for this signature in database
GPG Key ID: 51A00FA751B91849

View File

@ -142,6 +142,7 @@ import org.springframework.web.reactive.function.client.WebClient.RequestBodySpe
* @author Roman Puchkovskiy
* @author Russell Parry
* @author Thomas Geese
* @author Brian Clozel
* @since 3.2
* @see ClientConfiguration
* @see ReactiveRestClients
@ -468,7 +469,8 @@ public class DefaultReactiveElasticsearchClient implements ReactiveElasticsearch
Sinks.Many<ActionRequest> request = Sinks.many().unicast().onBackpressureBuffer();
FluxProcessor<SearchResponse, SearchResponse> inbound = FluxProcessor.fromSink(Sinks.many().unicast().onBackpressureBuffer());
FluxProcessor<SearchResponse, SearchResponse> inbound = FluxProcessor
.fromSink(Sinks.many().unicast().onBackpressureBuffer());
Flux<SearchResponse> exchange = request.asFlux().flatMap(it -> {