You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rest client (reactive) allows to use Response as a return type for rest methods. Unfortunately, Response is not typed at all and thus when you want to access the status code of the response, you cannot specify the type of the response in the rest client interface. This is not so nice, because ideally, you'd like to specify the whole api in that interface.
In contrast, the RestResponse<T> class can already be used in resteasy-reactive for returning a type response. Please also add support for RestResponse<T> return types in the rest client (reactive).
Implementation ideas
No response
The text was updated successfully, but these errors were encountered:
Description
The rest client (reactive) allows to use
Response
as a return type for rest methods. Unfortunately,Response
is not typed at all and thus when you want to access the status code of the response, you cannot specify the type of the response in the rest client interface. This is not so nice, because ideally, you'd like to specify the whole api in that interface.In contrast, the
RestResponse<T>
class can already be used in resteasy-reactive for returning a type response. Please also add support forRestResponse<T>
return types in the rest client (reactive).Implementation ideas
No response
The text was updated successfully, but these errors were encountered: