1
0
mirror of synced 2026-07-07 02:30:01 +00:00

Make org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchTemplate.ClientCallback public.

Original Pull Request #2815
Closes #2814

(cherry picked from commit 260dadd4d6)
(cherry picked from commit e2e6b5005b)
This commit is contained in:
Peter-Josef Meisch
2023-12-29 12:44:54 +01:00
parent cc6899703b
commit e6c125acda
@@ -642,7 +642,7 @@ public class ReactiveElasticsearchTemplate extends AbstractReactiveElasticsearch
*
* @param <T>
*/
interface ClientCallback<T extends Publisher<?>> {
public interface ClientCallback<T extends Publisher<?>> {
T doWithClient(ReactiveElasticsearchClient client);
}