org.elasticsearch.action.fieldcaps.FieldCapabilitiesResponse Java Examples

The following examples show how to use org.elasticsearch.action.fieldcaps.FieldCapabilitiesResponse. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ClientWithStats.java    From rdf4j with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public ActionFuture<FieldCapabilitiesResponse> fieldCaps(FieldCapabilitiesRequest request) {
	return wrapped.fieldCaps(request);
}
 
Example #2
Source File: ClientWithStats.java    From rdf4j with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Override
public void fieldCaps(FieldCapabilitiesRequest request, ActionListener<FieldCapabilitiesResponse> listener) {
	wrapped.fieldCaps(request, listener);
}
 
Example #3
Source File: ReactorElasticSearchClient.java    From james-project with Apache License 2.0 4 votes vote down vote up
public Mono<FieldCapabilitiesResponse> fieldCaps(FieldCapabilitiesRequest fieldCapabilitiesRequest, RequestOptions options) {
    return toReactor(listener -> client.fieldCapsAsync(fieldCapabilitiesRequest, options, listener));
}
 
Example #4
Source File: FessEsClient.java    From fess with Apache License 2.0 4 votes vote down vote up
@Override
public ActionFuture<FieldCapabilitiesResponse> fieldCaps(final FieldCapabilitiesRequest request) {
    return client.fieldCaps(request);
}
 
Example #5
Source File: FessEsClient.java    From fess with Apache License 2.0 4 votes vote down vote up
@Override
public void fieldCaps(final FieldCapabilitiesRequest request, final ActionListener<FieldCapabilitiesResponse> listener) {
    client.fieldCaps(request, listener);
}