Package org.elasticsearch.client
Class RequestOptions
java.lang.Object
org.elasticsearch.client.RequestOptions
public final class RequestOptions
extends java.lang.Object
The portion of an HTTP request to Elasticsearch that can be
manipulated without changing Elasticsearch's behavior.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRequestOptions.BuilderBuildsRequestOptions. -
Field Summary
Fields Modifier and Type Field Description static RequestOptionsDEFAULTDefault request options. -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<org.apache.http.Header>getHeaders()Headers to attach to the request.HttpAsyncResponseConsumerFactorygetHttpAsyncResponseConsumerFactory()TheHttpAsyncResponseConsumerFactoryused to create oneHttpAsyncResponseConsumercallback per retry.org.apache.http.client.config.RequestConfiggetRequestConfig()get RequestConfig, which can set socketTimeout, connectTimeout and so on by requestWarningsHandlergetWarningsHandler()How this request should handle warnings.inthashCode()RequestOptions.BuildertoBuilder()Create a builder that contains these options but can be modified.java.lang.StringtoString()
-
Field Details
-
DEFAULT
Default request options.
-
-
Method Details
-
toBuilder
Create a builder that contains these options but can be modified. -
getHeaders
public java.util.List<org.apache.http.Header> getHeaders()Headers to attach to the request. -
getHttpAsyncResponseConsumerFactory
TheHttpAsyncResponseConsumerFactoryused to create oneHttpAsyncResponseConsumercallback per retry. Controls how the response body gets streamed from a non-blocking HTTP connection on the client side. -
getWarningsHandler
How this request should handle warnings. If null (the default) then this request will default to the behavior dictacted byRestClientBuilder.setStrictDeprecationMode(boolean).This can be set to
WarningsHandler.PERMISSIVEif the client should ignore all warnings which is the same behavior as setting strictDeprecationMode to true. It can be set toWarningsHandler.STRICTif the client should fail if there are any warnings which is the same behavior as settings strictDeprecationMode to false.It can also be set to a custom implementation of WarningsHandler to permit only certain warnings or to fail the request if the warnings returned don't exactly match some set.
-
getRequestConfig
public org.apache.http.client.config.RequestConfig getRequestConfig()get RequestConfig, which can set socketTimeout, connectTimeout and so on by request- Returns:
- RequestConfig
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-