File tree 4 files changed +9
-10
lines changed
src/main/java/org/springframework/data/elasticsearch/client/reactive
4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 133
133
public class DefaultReactiveElasticsearchClient implements ReactiveElasticsearchClient , Indices {
134
134
135
135
private final HostProvider hostProvider ;
136
-
136
+
137
137
private final RequestCreator requestCreator ;
138
138
139
139
/**
Original file line number Diff line number Diff line change 4
4
* @author Roman Puchkovskiy
5
5
* @since 4.0
6
6
*/
7
- class DefaultRequestCreator implements RequestCreator {
8
- }
7
+ class DefaultRequestCreator implements RequestCreator {}
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ private ReactiveRestClients() {}
34
34
/**
35
35
* Start here to create a new client tailored to your needs.
36
36
*
37
- * @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient};
38
- * must not be {@literal null}.
37
+ * @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient}; must not
38
+ * be {@literal null}.
39
39
* @return new instance of {@link ReactiveElasticsearchClient}.
40
40
*/
41
41
public static ReactiveElasticsearchClient create (ClientConfiguration clientConfiguration ) {
@@ -48,8 +48,8 @@ public static ReactiveElasticsearchClient create(ClientConfiguration clientConfi
48
48
/**
49
49
* Start here to create a new client tailored to your needs.
50
50
*
51
- * @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient};
52
- * must not be {@literal null}.
51
+ * @param clientConfiguration client configuration to use for building {@link ReactiveElasticsearchClient}; must not
52
+ * be {@literal null}.
53
53
* @param requestCreator request creator to use in the client; must not be {@literal null}.
54
54
* @return new instance of {@link ReactiveElasticsearchClient}.
55
55
*/
Original file line number Diff line number Diff line change 1
1
package org .springframework .data .elasticsearch .client .reactive ;
2
2
3
+ import java .io .IOException ;
4
+ import java .util .function .Function ;
5
+
3
6
import org .elasticsearch .action .admin .indices .close .CloseIndexRequest ;
4
7
import org .elasticsearch .action .admin .indices .create .CreateIndexRequest ;
5
8
import org .elasticsearch .action .admin .indices .delete .DeleteIndexRequest ;
24
27
import org .springframework .data .elasticsearch .ElasticsearchException ;
25
28
import org .springframework .data .elasticsearch .client .util .RequestConverters ;
26
29
27
- import java .io .IOException ;
28
- import java .util .function .Function ;
29
-
30
30
/**
31
31
* @author Roman Puchkovskiy
32
32
* @since 4.0
You can’t perform that action at this time.
0 commit comments