Releases: WegenenVerkeer/RxHttpClient
Releases · WegenenVerkeer/RxHttpClient
2.0 - release
2.0-RC1 : Upgrade to RxJava 3.0
- Includes
interop
module for Reactor, Reactive-Streams, and JDK 9 Flow API. - includes
fs2
module for interop with Scalafs2
library
For more information, see the README
1.2.0
Adds a executeAndDechunk(ClientRequest, String)
method to the client. The method returns an Observable<String>
that emits a String whenever a separator String is observed in the received chunks. This is especially useful when chunked transfer encoding is used for server sent events (SSE) or other streaming data.
1.1.0
0.8.1
0.8
0.7
0.4.0
BugFix release 0.3.1
This fixes a nasty bug when posting multipart file requests by reverting to an earlier AsyncHttpClient version (1.9.31)
0.3.0
Fixes for issues #9, #10, #11, #12
The major changes:
- The
RxHttpClient
returns "Cold" Observables so that HTTP requests are only fired when an Observer subscribes to it - The Scala version of the client now also has the
close()
method - When recommended settings are not used, warnings are logged
- Updates to the 1.9.x version of com.ning.AsyncHttpClient library, which fixes resource leak problem (#12)
- Improved README