1
0
mirror of synced 2026-07-06 18:20:01 +00:00

DATAES-789 - Make ElasticsearchRestTemplate.ClientCallback public.

Original PR: #425
This commit is contained in:
alesharik
2020-04-14 23:02:16 +03:00
committed by GitHub
parent 771d8fb5e7
commit 41fffc0fa5
@@ -320,7 +320,7 @@ public class ElasticsearchRestTemplate extends AbstractElasticsearchTemplate {
* @since 4.0
*/
@FunctionalInterface
interface ClientCallback<T> {
public interface ClientCallback<T> {
T doWithClient(RestHighLevelClient client) throws IOException;
}