Releases: akarnokd/RxJavaExtensions
Releases · akarnokd/RxJavaExtensions
0.18.6
- Commit 2ec72c9a: Add
FlowableTransformers.requestObserveOn
that requests and emits one-by-one on a givenScheduler
and allows other tasks to be interleaved on that scheduler. (Example) - Commit 3f4922b9: Add
FlowableTransformers.requestSample(time)
that requests from upstream on a time basis. (Example) - Commit ec42fc6c: Add
FlowableTransformers.requestSample(Publisher)
that requests from upstream when the otherPublisher
signals anonNext
. (Example)
0.18.5
0.18.4
- Fix inconsistent error handling in
expand
operator. IntroduceexpandDelayError
overloads. Commit cfb23d0a
0.18.3
0.18.2
Fixes
- Pull 18: Assembly tracking: add empty stacktrace to avoid misbehaviour on some JVMs
Enhancements
- Commit 807f0140: Add
FlowableTransformers.indexOf
. (Example) - Commit dd348313: Add
FlowableProcessors.refCount
andSubjects.refCount
. (Example)
0.18.1
0.18.0
- Debug: Add multi-hook support for the
RxJavaPlugins.onSchedule
callback. (Example) - Add
subscribeAutoRelease
to automatically add and remove lambda consumers to and from aCompositeDisposable
when they terminate or get cancelled/disposed. (Example) - Removed the deprecated
ExpandStrategy.BREATH_FIRST
(misspelling); nowExpandStrategy.BREADTH_FIRST
.