org.biacode.escommons.toolkit.component.ScrollSearchComponent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of escommons-toolkit Show documentation
Show all versions of escommons-toolkit Show documentation
Elasticsearch commons library.
package org.biacode.escommons.toolkit.component
import org.biacode.escommons.core.model.document.AbstractEsDocument
import org.biacode.escommons.core.model.response.DocumentsAndTotalCount
import org.elasticsearch.action.search.SearchRequestBuilder
/**
* Created by Arthur Asatryan.
* Date: 9/5/17
* Time: 4:49 PM
*/
interface ScrollSearchComponent {
fun scroll(
searchRequestBuilder: SearchRequestBuilder,
clazz: Class,
timeoutMillis: Long
): DocumentsAndTotalCount
}