default <U> U |
SearchClientAdvanced.customRequest(Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType) |
Executes a custom to the Algolia API under the retry strategy.
|
default <U> U |
SearchClientAdvanced.customRequest(Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType,
RequestOptions requestOptions) |
Executes a custom to the Algolia API under the retry strategy.
|
default <T,U> U |
SearchClientAdvanced.customRequest(T data,
Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType) |
Executes a custom to the Algolia API under the retry strategy.
|
default <T,U> U |
SearchClientAdvanced.customRequest(T data,
Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType,
RequestOptions requestOptions) |
Executes a custom to the Algolia API under the retry strategy.
|
default <U> CompletableFuture<U> |
SearchClientAdvanced.customRequestAsync(Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType) |
Executes a custom to the Algolia API under the retry strategy.
|
default <U> CompletableFuture<U> |
SearchClientAdvanced.customRequestAsync(Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType,
RequestOptions requestOptions) |
Executes a custom to the Algolia API under the retry strategy.
|
default <T,U> CompletableFuture<U> |
SearchClientAdvanced.customRequestAsync(T data,
Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType) |
Executes a custom to the Algolia API under the retry strategy.
|
default <T,U> CompletableFuture<U> |
SearchClientAdvanced.customRequestAsync(T data,
Class<U> returnClazz,
HttpMethod httpMethod,
String path,
CallType callType,
RequestOptions requestOptions) |
Executes a custom to the Algolia API under the retry strategy.
|
<TResult> CompletableFuture<TResult> |
HttpTransport.executeRequestAsync(HttpMethod method,
String path,
CallType callType,
Class<TResult> returnClass,
RequestOptions requestOptions) |
Executes the request to Algolia asynchronously with the retry strategy.
|
<TResult,TData> CompletableFuture<TResult> |
HttpTransport.executeRequestAsync(HttpMethod method,
String path,
CallType callType,
TData data,
Class<TResult> returnClazz,
RequestOptions requestOptions) |
Executes the request to Algolia asynchronously with the retry strategy.
|
<TResult,TInnerResult,TData> CompletableFuture<TResult> |
HttpTransport.executeRequestAsync(HttpMethod method,
String path,
CallType callType,
TData data,
Class<TResult> returnClazz,
Class<TInnerResult> innerClazz,
RequestOptions requestOptions) |
Executes the request to Algolia asynchronously with the retry strategy.
|