feignx icon indicating copy to clipboard operation
feignx copied to clipboard

Experimental version of Feign, for asynchronous, non-blocking and reactive modes

Results 19 feignx issues
Sort by recently updated
recently updated
newest added

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...

test case

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,...

test case

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...

test case

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...

test case

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...

test case

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...

test case

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:**...

test case

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...

test case

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...

enhancement