Skip to content

Tags: wanbf/RxNetty

Tags

v0.5.2

Toggle v0.5.2's commit message
Refactor spectator metrics

__Problem__

Currently the listener does not expose metrics to specific events but instead does internal calculations and expose custom gauges. This is limiting as it gives less information.

__Modification__

Modified the metrics to represent the actual events.

__Result__

More flexible insights.

v0.5.2-rc.5

Toggle v0.5.2-rc.5's commit message
`RequestN` reduces with completed subscribers.

#### Problem

Re-calculation of max `requestN` per subscriber did not take into account removed subscribers correctly. This causes the `requestN` value to decrease over time when subscribers are completed.

#### Modification

- Modified `recalculateMaxPerSubscriber` to take old and new subscriber count instead of trying to determine the correct value from the current subscriber queue size.
- `subscribers.remove()` does not happen on unsubscribe but only from the task that recalculates the max `requestN` values. This also coalesces multiple removes into a single task run.

#### Result

Consistent `requestN` values with new subscribes and completions.

v0.4.20

Toggle v0.4.20's commit message
Escape html special characters in default error response generator.

v0.5.2-rc.4

Toggle v0.5.2-rc.4's commit message
Upgrade netty to 4.1.5.Final (ReactiveX#547)

v0.4.19

Toggle v0.4.19's commit message
Upgrade netty to 4.1.5-Final (ReactiveX#546)

v0.4.18

Toggle v0.4.18's commit message
Removed unused code (ReactiveX#540)

Cleanup for ReactiveX#525, removing unused methods and classes.

v0.4.17

Toggle v0.4.17's commit message
Update README.md

v0.5.2-rc.3

Toggle v0.5.2-rc.3's commit message
Disable `LocalEchoTest` (ReactiveX#519)

Travis does not seem to be happy about this test, although it passed for the PR.
Disabling this for now as this is not really critical functionality.

v0.5.2-rc.2

Toggle v0.5.2-rc.2's commit message
Fix project release (ReactiveX#508)

0.4.16

Toggle 0.4.16's commit message
Fixes ReactiveX#474 (disable auto release leaks buffers when content …

…not subscribed) (ReactiveX#497)

When auto-release it turned off and the HTTP content is not subscribed, the buffers which are disposed from `UnicastContentSubject` are not released (which otherwise would have been released by the subscriber).

This change properly release the disposed buffers when auto-release is turned off.