Closed sdelamo closed 1 year ago
We cannot change the responses to io.reactivex.Single
.
Rx3HttpClient
(and BridgedRx3HttpClient
, etc) extend the HttpClient
interface in core, which exposes org.reactivestreams.Publisher
as response types. Flowable
, Flux
and Mono
all implement org.reactivestreams.Publisher
so they can be used but io.reactivex.Single
does not.
see: https://github.com/micronaut-projects/micronaut-reactor/pull/249