de.spinscale.elasticsearch.action.suggest.refresh.SuggestRefreshAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-plugin-suggest Show documentation
Show all versions of elasticsearch-plugin-suggest Show documentation
Lucene FSTSuggester implementation for ElasticSearch
The newest version!
package de.spinscale.elasticsearch.action.suggest.refresh;
import de.spinscale.elasticsearch.client.action.suggest.SuggestRefreshRequestBuilder;
import org.elasticsearch.action.ClientAction;
import org.elasticsearch.client.Client;
public class SuggestRefreshAction extends ClientAction {
public static final SuggestRefreshAction INSTANCE = new SuggestRefreshAction();
public static final String NAME = "suggestRefresh-fst";
private SuggestRefreshAction() {
super(NAME);
}
@Override
public SuggestRefreshRequestBuilder newRequestBuilder(Client client) {
return new SuggestRefreshRequestBuilder(client);
}
@Override
public SuggestRefreshResponse newResponse() {
return new SuggestRefreshResponse();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy