0.3.12
- Issue 118 Javadoc errors when compiling with Java 8.
- Pull 196 Websocket client and server implementation.
- Pull 204 Add a generic Handler interface
- Issue 206 HttpClientResponse.getContent() will loose data if not eagerly subscribed.
- Issue 199 Invalid metric event used in DefaultChannelWriter.
Change in behavior
As part of Issue 206 the following change in behavior is done in this release:
Old Behavior
- Before this fix, the the
Observable
returned fromHttpClient.submit()
used to complete after the content of the response completed. - The content could be lost (this issue) if the content was subscribed out of the
onNext
call ofHttpClientResponse
New Behavior
- After this fix, the
Observable
returned fromHttpClient.submit()
completes immediately after one callback ofHttpClientResponse
. - The content can be subscribed out of the
onNext
call ofHttpClientResponse
till the content timeout as described in #206.
Artifacts: Maven Central