- All Superinterfaces:
RxInvoker<CompletionStage>
Reactive invoker based
CompletionStage.- Since:
- 2.1
- Author:
- Marek Potociar, Santiago Pericas-Geertsen
-
Method Summary
Modifier and TypeMethodDescriptiondelete()Invoke HTTP DELETE method for the current request.<T> CompletionStage<T> delete(GenericType<T> responseType) Invoke HTTP DELETE method for the current request.<T> CompletionStage<T> Invoke HTTP DELETE method for the current request.get()Invoke HTTP GET method for the current request.<T> CompletionStage<T> get(GenericType<T> responseType) Invoke HTTP GET method for the current request.<T> CompletionStage<T> Invoke HTTP GET method for the current request.head()Invoke HTTP HEAD method for the current request.Invoke an arbitrary method for the current request.Invoke an arbitrary method for the current request.<T> CompletionStage<T> method(String name, Entity<?> entity, GenericType<T> responseType) Invoke an arbitrary method for the current request.<T> CompletionStage<T> Invoke an arbitrary method for the current request.<T> CompletionStage<T> method(String name, GenericType<T> responseType) Invoke an arbitrary method for the current request.<T> CompletionStage<T> Invoke an arbitrary method for the current request.options()Invoke HTTP OPTIONS method for the current request.<T> CompletionStage<T> options(GenericType<T> responseType) Invoke HTTP OPTIONS method for the current request.<T> CompletionStage<T> Invoke HTTP OPTIONS method for the current request.Invoke HTTP POST method for the current request.<T> CompletionStage<T> post(Entity<?> entity, GenericType<T> type) Invoke HTTP POST method for the current request.<T> CompletionStage<T> Invoke HTTP POST method for the current request.Invoke HTTP PUT method for the current request.<T> CompletionStage<T> put(Entity<?> entity, GenericType<T> type) Invoke HTTP PUT method for the current request.<T> CompletionStage<T> Invoke HTTP PUT method for the current request.trace()Invoke HTTP TRACE method for the current request.<T> CompletionStage<T> trace(GenericType<T> responseType) Invoke HTTP TRACE method for the current request.<T> CompletionStage<T> Invoke HTTP TRACE method for the current request.
-
Method Details
-
get
CompletionStage<Response> get()Description copied from interface:RxInvokerInvoke HTTP GET method for the current request.- Specified by:
getin interfaceRxInvoker<CompletionStage>- Returns:
- invocation response wrapped in the completion aware type.
-
get
Description copied from interface:RxInvokerInvoke HTTP GET method for the current request.- Specified by:
getin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
get
Description copied from interface:RxInvokerInvoke HTTP GET method for the current request.- Specified by:
getin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
put
Description copied from interface:RxInvokerInvoke HTTP PUT method for the current request.- Specified by:
putin interfaceRxInvoker<CompletionStage>- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.- Returns:
- invocation response wrapped in the completion aware type.
-
put
Description copied from interface:RxInvokerInvoke HTTP PUT method for the current request.- Specified by:
putin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.clazz- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
put
Description copied from interface:RxInvokerInvoke HTTP PUT method for the current request.- Specified by:
putin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.type- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
post
Description copied from interface:RxInvokerInvoke HTTP POST method for the current request.- Specified by:
postin interfaceRxInvoker<CompletionStage>- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.- Returns:
- invocation response wrapped in the completion aware type.
-
post
Description copied from interface:RxInvokerInvoke HTTP POST method for the current request.- Specified by:
postin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.clazz- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
post
Description copied from interface:RxInvokerInvoke HTTP POST method for the current request.- Specified by:
postin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.type- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
delete
CompletionStage<Response> delete()Description copied from interface:RxInvokerInvoke HTTP DELETE method for the current request.- Specified by:
deletein interfaceRxInvoker<CompletionStage>- Returns:
- invocation response wrapped in the completion aware type.
-
delete
Description copied from interface:RxInvokerInvoke HTTP DELETE method for the current request.- Specified by:
deletein interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
delete
Description copied from interface:RxInvokerInvoke HTTP DELETE method for the current request.- Specified by:
deletein interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
head
CompletionStage<Response> head()Description copied from interface:RxInvokerInvoke HTTP HEAD method for the current request.- Specified by:
headin interfaceRxInvoker<CompletionStage>- Returns:
- invocation response wrapped in the completion aware type.
-
options
CompletionStage<Response> options()Description copied from interface:RxInvokerInvoke HTTP OPTIONS method for the current request.- Specified by:
optionsin interfaceRxInvoker<CompletionStage>- Returns:
- invocation response wrapped in the completion aware type.
-
options
Description copied from interface:RxInvokerInvoke HTTP OPTIONS method for the current request.- Specified by:
optionsin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
options
Description copied from interface:RxInvokerInvoke HTTP OPTIONS method for the current request.- Specified by:
optionsin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
trace
CompletionStage<Response> trace()Description copied from interface:RxInvokerInvoke HTTP TRACE method for the current request.- Specified by:
tracein interfaceRxInvoker<CompletionStage>- Returns:
- invocation response wrapped in the completion aware type.
-
trace
Description copied from interface:RxInvokerInvoke HTTP TRACE method for the current request.- Specified by:
tracein interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
trace
Description copied from interface:RxInvokerInvoke HTTP TRACE method for the current request.- Specified by:
tracein interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type.
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Parameters:
name- method name.- Returns:
- invocation response wrapped in the completion aware type..
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
name- method name.responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type..
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
name- method name.responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type..
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Parameters:
name- method name.entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.- Returns:
- invocation response wrapped in the completion aware type..
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- response entity type.- Parameters:
name- method name.entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.responseType- Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type..
-
method
Description copied from interface:RxInvokerInvoke an arbitrary method for the current request.- Specified by:
methodin interfaceRxInvoker<CompletionStage>- Type Parameters:
T- generic response entity type.- Parameters:
name- method name.entity- request entity, including it's fullVariantinformation. Any variant-related HTTP headers previously set (namelyContent-Type,Content-LanguageandContent-Encoding) will be overwritten using the entity variant information.responseType- representation of a generic Java type the response entity will be converted to.- Returns:
- invocation response wrapped in the completion aware type..
-