DATAES-921 - Polishing.

This commit is contained in:
Peter-Josef Meisch 2020-10-06 21:21:27 +02:00
parent 980aff30ae
commit f1dc7fc95c
No known key found for this signature in database
GPG Key ID: DE108246970C7708
2 changed files with 2 additions and 4 deletions

View File

@ -567,10 +567,6 @@ public class DefaultReactiveElasticsearchClient implements ReactiveElasticsearch
.next();
}
/*
* (non-Javadoc)
* @see org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient#ping(org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient.ReactiveElasticsearchClientCallback)
*/
@Override
public <T> Mono<T> execute(ReactiveElasticsearchClientCallback<T> callback) {

View File

@ -613,6 +613,7 @@ public interface ReactiveElasticsearchClient {
* unavailable.
*
* @param callback the {@link ReactiveElasticsearchClientCallback callback} wielding the actual command to run.
* @param <T> the type emitted by the returned Mono.
* @return the {@link Mono} emitting the {@link ClientResponse} once subscribed.
*/
@SuppressWarnings("JavaDoc")
@ -630,6 +631,7 @@ public interface ReactiveElasticsearchClient {
/**
* Low level callback interface operating upon {@link WebClient} to send commands towards elasticsearch.
*
* @param <T> the type emitted by the returned Mono.
* @author Christoph Strobl
* @since 3.2
*/