Skip to content

0.3.12

Compare
Choose a tag to compare
@NiteshKant NiteshKant released this 20 Aug 22:57

Milestone

  • 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 from HttpClient.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 of HttpClientResponse
New Behavior
  • After this fix, the Observable returned from HttpClient.submit() completes immediately after one callback of HttpClientResponse.
  • The content can be subscribed out of the onNext call of HttpClientResponse till the content timeout as described in #206.

Artifacts: Maven Central