JakeWharton / RxReplayingShare

An RxJava transformer which combines replay(1), publish(), and refCount() operators.
Apache License 2.0
628 stars 28 forks source link

Use a custom stream and listener types, adds backpressure support. #16

Closed JakeWharton closed 7 years ago

JakeWharton commented 7 years ago

This should also reduce the overhead of the operator due to the removal of 'startWith' (which calls 'concat'), 'defer', and 'just'/'empty'.