Skip to content

Releases: akarnokd/RxJavaExtensions

0.18.6

29 Jan 14:36
Compare
Choose a tag to compare
  • Commit 2ec72c9a: Add FlowableTransformers.requestObserveOn that requests and emits one-by-one on a given Scheduler 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 other Publisher signals an onNext. (Example)

0.18.5

24 Jan 08:55
Compare
Choose a tag to compare

Upgrade to RxJava 2.1.9.

0.18.4

03 Jan 10:20
Compare
Choose a tag to compare
  • Fix inconsistent error handling in expand operator. Introduce expandDelayError overloads. Commit cfb23d0a

0.18.3

01 Jan 13:54
Compare
Choose a tag to compare

Upgrade to RxJava 2.1.8.

0.18.2

15 Dec 09:36
Compare
Choose a tag to compare

Fixes

  • Pull 18: Assembly tracking: add empty stacktrace to avoid misbehaviour on some JVMs

Enhancements

0.18.1

27 Nov 11:40
Compare
Choose a tag to compare

Upgrade to RxJava 2.1.7.

0.18.0

23 Nov 13:39
Compare
Choose a tag to compare
  • Debug: Add multi-hook support for the RxJavaPlugins.onSchedule callback. (Example)
  • Add subscribeAutoRelease to automatically add and remove lambda consumers to and from a CompositeDisposable when they terminate or get cancelled/disposed. (Example)
  • Removed the deprecated ExpandStrategy.BREATH_FIRST (misspelling); now ExpandStrategy.BREADTH_FIRST.

0.17.9

27 Oct 08:29
Compare
Choose a tag to compare
  • Upgrade to RxJava 2.1.6.
  • Add ParallelTransformers.orderedMerge() (Pull #17, Example).

0.17.8

05 Oct 08:50
Compare
Choose a tag to compare
  • Deprecate wrong spelling of ExpandStrategy.BREATH in favor of BREADTH.
  • Upgrade to RxJava 2.1.5

0.17.7

22 Sep 09:43
Compare
Choose a tag to compare
  • Upgrade to RxJava 2.1.4
  • Add window operators with predicate boundary (Pull 12):