-
Notifications
You must be signed in to change notification settings - Fork 11
Decoder Support #10
Comments
Do you mean |
Yes. |
|
I agree, in this case, it should be the responsibility of a With that said, this library should be able to allow for more than just a interface GitHub {
@RequestLine("GET /repos/{owner}/{repo}/contributors")
Flux<Contributor> getContributors(@Param("owner") String owner, @Param("repo") String repository);
}
GitHub gitHub = ReactiveFeign.builder()
.encoder(new JacksonEncoder())
.decoder(new JacksonDecoder())
.client(new ApacheHttpClient()) // wraps in a ReactiveHttpClient
.target(GitHub.class, "https://www.github.com"); |
Add
Decoder
Support during the response phase.The text was updated successfully, but these errors were encountered: