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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}