mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-10-13 13:58:57 +00:00
DATAES-653 - Polishing.
This commit is contained in:
parent
0b378601d9
commit
a7cdfb84b0
@ -4,5 +4,4 @@ package org.springframework.data.elasticsearch.client.reactive;
|
|||||||
* @author Roman Puchkovskiy
|
* @author Roman Puchkovskiy
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
*/
|
*/
|
||||||
class DefaultRequestCreator implements RequestCreator {
|
class DefaultRequestCreator implements RequestCreator {}
|
||||||
}
|
|
||||||
|
@ -34,8 +34,8 @@ public final class ReactiveRestClients {
|
|||||||
/**
|
/**
|
||||||
* Start here to create a new client tailored to your needs.
|
* Start here to create a new client tailored to your needs.
|
||||||
*
|
*
|
||||||
* @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient};
|
* @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient}; must not
|
||||||
* must not be {@literal null}.
|
* be {@literal null}.
|
||||||
* @return new instance of {@link ReactiveElasticsearchClient}.
|
* @return new instance of {@link ReactiveElasticsearchClient}.
|
||||||
*/
|
*/
|
||||||
public static ReactiveElasticsearchClient create(ClientConfiguration clientConfiguration) {
|
public static ReactiveElasticsearchClient create(ClientConfiguration clientConfiguration) {
|
||||||
@ -48,8 +48,8 @@ public final class ReactiveRestClients {
|
|||||||
/**
|
/**
|
||||||
* Start here to create a new client tailored to your needs.
|
* Start here to create a new client tailored to your needs.
|
||||||
*
|
*
|
||||||
* @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient};
|
* @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient}; must not
|
||||||
* must not be {@literal null}.
|
* be {@literal null}.
|
||||||
* @param requestCreator request creator to use in the client; must not be {@literal null}.
|
* @param requestCreator request creator to use in the client; must not be {@literal null}.
|
||||||
* @return new instance of {@link ReactiveElasticsearchClient}.
|
* @return new instance of {@link ReactiveElasticsearchClient}.
|
||||||
*/
|
*/
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
package org.springframework.data.elasticsearch.client.reactive;
|
package org.springframework.data.elasticsearch.client.reactive;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.function.Function;
|
||||||
|
|
||||||
import org.elasticsearch.action.admin.indices.close.CloseIndexRequest;
|
import org.elasticsearch.action.admin.indices.close.CloseIndexRequest;
|
||||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
||||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||||
@ -24,9 +27,6 @@ import org.elasticsearch.index.reindex.DeleteByQueryRequest;
|
|||||||
import org.springframework.data.elasticsearch.ElasticsearchException;
|
import org.springframework.data.elasticsearch.ElasticsearchException;
|
||||||
import org.springframework.data.elasticsearch.client.util.RequestConverters;
|
import org.springframework.data.elasticsearch.client.util.RequestConverters;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.function.Function;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Roman Puchkovskiy
|
* @author Roman Puchkovskiy
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user