feignx
feignx copied to clipboard
Experimental version of Feign, for asynchronous, non-blocking and reactive modes
See #22 **Scenario:** Simple HTTP request can be where the request content is binary data provided directly by a user, not through the encoded. **Given:** a request is made to...
See #22 **Scenario:** Simple HTTP request can be made requesting responses be compressed. **Given:** a request is made to a known endpoint, **When:** the request is sent to the target,...
See #22 **Scenario:** Simple HTTP request that results for a large file can be streamed from the Response by interacting with the input stream directly. **Given:** a request is made...
See #22 **Scenario:** Simple HTTP request that results in a 4xx response code, is sent to the Exception Handler. **Given:** a request is made to a known endpoint, **When:** the...
See #22 **Scenario:** Simple HTTP request that results in a 5xx response code, is sent to the Exception Handler. **Given:** a request is made to a known endpoint, **When:** the...
See #22 **Scenario:** Simple HTTP request, that was redirected and results in a 200 OK response. **Given:** a request is made to a known endpoint, **When:** the request is sent...
See #22 **Scenario:** Simple HTTP request that obtains a NO CONTENT response. **Given:** a request is made to a known endpoint, **When:** the request is send to the target, **Then:**...
See #22 **Scenario:** Simple HTTP request that obtains an empty response. **Given:** a request is made to a known endpoint, **When:** the request is send to the target, **Then:** a...
As with #18, Feign supports non-blocking, reactive execution modes through wrappers andthrough Hystrix's Observable support. Given Feign's originated before non-blocking techniques such as reactive stream existed, attempting to add support...