Uses of Class
org.springframework.data.elasticsearch.core.MultiGetItem
Packages that use MultiGetItem
Package
Description
This package contains classes that use the new Elasticsearch client library (co.elastic.clients:elasticsearch-java)
to access Elasticsearch.
This package contains classes that use the old Elasticsearch 7 libraries to access Elasticsearch either directly by
using the RestHighLevelClient or indirectly by using code copied from Elasticsearch libraries (reactive
implementation).
-
Uses of MultiGetItem in org.springframework.data.elasticsearch.client.elc
Methods in org.springframework.data.elasticsearch.client.elc that return types with arguments of type MultiGetItemModifier and TypeMethodDescription<T> List<MultiGetItem<T>>ElasticsearchTemplate.multiGet(Query query, Class<T> clazz, IndexCoordinates index) <T> reactor.core.publisher.Flux<MultiGetItem<T>>ReactiveElasticsearchTemplate.multiGet(Query query, Class<T> clazz, IndexCoordinates index) -
Uses of MultiGetItem in org.springframework.data.elasticsearch.client.erhlc
Methods in org.springframework.data.elasticsearch.client.erhlc that return MultiGetItemModifier and TypeMethodDescriptionstatic MultiGetItem<Document>DocumentAdapters.from(org.elasticsearch.action.get.MultiGetItemResponse itemResponse) Deprecated.Creates aMultiGetItem<Document>from aMultiGetItemResponse.Methods in org.springframework.data.elasticsearch.client.erhlc that return types with arguments of type MultiGetItemModifier and TypeMethodDescriptionstatic List<MultiGetItem<Document>>DocumentAdapters.from(org.elasticsearch.action.get.MultiGetResponse source) Deprecated.Creates a List ofMultiGetItem<Document>s fromMultiGetResponse.<T> List<MultiGetItem<T>>ElasticsearchRestTemplate.multiGet(Query query, Class<T> clazz, IndexCoordinates index) Deprecated.<T> reactor.core.publisher.Flux<MultiGetItem<T>>ReactiveElasticsearchTemplate.multiGet(Query query, Class<T> clazz, IndexCoordinates index) Deprecated. -
Uses of MultiGetItem in org.springframework.data.elasticsearch.core
Methods in org.springframework.data.elasticsearch.core that return MultiGetItemModifier and TypeMethodDescriptionstatic <T> MultiGetItem<T>MultiGetItem.of(T item, MultiGetItem.Failure failure) Methods in org.springframework.data.elasticsearch.core that return types with arguments of type MultiGetItemModifier and TypeMethodDescription<T> List<MultiGetItem<T>><T> reactor.core.publisher.Flux<MultiGetItem<T>><T> List<MultiGetItem<T>>Execute a multiGet against elasticsearch for the given ids.<T> List<MultiGetItem<T>>DocumentOperations.multiGet(Query query, Class<T> clazz, IndexCoordinates index) Execute a multiGet against elasticsearch for the given ids.<T> reactor.core.publisher.Flux<MultiGetItem<T>>Execute a multiGet against elasticsearch for the given ids.<T> reactor.core.publisher.Flux<MultiGetItem<T>>ReactiveDocumentOperations.multiGet(Query query, Class<T> clazz, IndexCoordinates index) Execute a multiGet against elasticsearch for the given ids.