This is the 5th release of Reactor 3.0, part of Aluminium-SR1 Release Train.
This is a recommended update for all Reactor 3 users, with a lot of improvements
and small bugfixes that have notably been made possible thanks to an ongoing effort
to improve the test coverage beyond 80%.
⚠️ Update considerations and deprecations
- A number of APIs and signatures have been deprecated and are scheduled to be removed in
3.1.0.
This should be made explicit in the associated API javadoc, but a list has been compiled in #323 too. - Some variants of
window/buffer/windowMillis/bufferMilliswere ambiguous (having close variations
of numerical parameters, int+long or long+long). The int+long ones (max size plus a timeout) have been
renamed with aTimeoutkeyword, likewindowTimeoutMillis(#363) (alias and deprecate) RejectedDisposablewas not intended to be public and has been made package-private (#362)- All closed API
Supplier<Queue>checks for null have been replaced with an error throw, as they are consider fatal - Deprecate
Operators.addAndGet(AtomicLong)as not used internally, we encourage to use the otheraddAndGetvariant or if required port this over your app/lib.Exceptions.failWithCancel()is not a singleton exception anymore andExceptions.CANCEL_STACKTRACEhas been deprecated.
✨ New features and improvements
- Tuples improvements: they are now
Iterator<Object>with an unmodifiable iterator, a Tuple2 and a Tuple3
filled with nulls won't have the same hashcode anymore (base is the size), and Tuples toString format changed
(displays nulls, enclosed in square brackets) - Added decorator hook for
ExecutorServicesin Schedulers, allowing users to change the internal implementation
for any core-providedScheduler(#354) MonoandParallelFluxnow havedoOnEach(#344)ParallelFluxnow allow you to easily compose on each group's flux usingcomposeGroup(#283)- Generalize
fromFuturewith an additonalfromCompletionStageto support more future-like use cases (#357) - Align delay APIs that delays elements on Mono and Flux by adding
Mono.delayElementand prepare renaming
ofFlux.delaytoFlux.delayElements(#263) - Expose groupBy with prefetch variant (#370)
- In the same vein as for buffer, two new window operators have been introduced:
windowUntilandwindowWhile(#260) - Improvements have been made to debugging and tracing user experience (#379, #361, #417)
- identifying the source of an error from an inner flux inside eg. a
flatMap, decrease performance cost of activated assembly tracing, addedFlux,Mono,ParallelFluxcheckpoint(description?)operator to manually apply assembly tracing
- identifying the source of an error from an inner flux inside eg. a
- Direct schedule
Disposablecan now be checked forisDisposed()(#410) - Add
transform()to onAssembly scope Fuseable.QueueSubscription#isEmpty()is not expected to fail anymore- Do not wrap rejected execution exceptions (use
Exceptions.propagate()instead ofExceptions.bubble() - Check negative timeout for
Schedulers.newElastic() - Check bufferSize in
Flux#onBackpressureBuffer() - Eager cancel
Flux.publishsubscribers during batch of emission (#430)
🪲 Reported Bug fixes
- Fix
Mono.sequenceEqualsnot propagating subscribe signal + doing too much inner subscribe / too few inner cancel (#328, #329) Mono.whenDelayErrorwas wrongly only using last 2 params out of 3 (#333)- Fix WorkQueueProcessor potential thread leak (#335, #336)
TuplesandTuple2fixes: fixedTuples.fromArrayfor size 0 and 8, (#338)- Due to the Tuples issue above, the
zipWithwas failing with less than 8 sources (#338) MonoSink.success(null)now delegates tosuccess()to ensure same semantics (#346)CachedTimedScheduler.now()correctly delegates to underlying scheduler (#351)Operators.addAndGetnow return updated value (#372)- An unbounded prefetch (
Integer.MAX_VALUE) on groupBy triggers unbounded request (#385) - Fix fusion on
Flux.skipUntil,Flux.handle, fix fusion request handling for SubscribeOnValue (8f67283, f2404eb, #342)- Fix unbounded
Flux.replay/cachefusion (#392)
- Fix unbounded
- Use unbounded queues for
groupBy,window,bufferandswitchMapto avoid overflow (#411) - Thread boundaries such as zip, flatMap or publishOn now correctly request fusion with the thread barrier flag. This means that thread expectation for upstream operators such as doOnNext or map will defeat tentative to fuse to enforce thread expectations.
- Fix
Flux&ParallelFluxreduce/collect generic issue - Fix linked queue minimum (was always minimum instead of the default size QueueSupplier.SMALL_BUFFER_SIZE or specified by user via
QueueSupplier.unbounded(linkSize)!) - Fix bi-insert logic used by switchMap/join
📖 Documentation, Tests and Build
- Various typos and wording improvements to javadocs
- First draft of a Reference Guide (#404, with a target at spring-level quality and completion for 3.1.0)
- Global effort on tests: increase overall coverage, better separate long-running tests that make less sense in CI,
first shot at a TCK-like framework to ease coverage of new operators... - Exclude snapshot and mavenLocal from release builds (#291)
Various changes and fixes
- Use computeIfAbsent instead of verbose null check in
collectMultimap(#396) - OSGi bundle: don't import com.google twice (#386)
- Introduce progressive upgrade to unbounded request FlatMap in preparation of #371
- Fix
ParallelFlux#getPrefetchaccuracy of the returned value - Fix Mono.or optimization, add assembly on Mono.first
- Fix Mono.when array type issue
- Hooks (de)activation are now logged as DEBUG instead of INFO
- Improve common operator defensive patterns regarding fusion and RS rules
Fuseable.SynchronousSubscriptiondoes now expect a sync request mode and will returnFuseable.NONEif requested NONE.- Internal renaming, in particular ParallelUnordered to Parallel
- Remove instance cost where possible for
ArrayDequeoperators - unbounded prefetch should now correctly return Integer.MAX_VALUE not Long.MAX_VALUE on
Flux#getPrefetch(), monitor #397 for the complete migration in 3.1
👍 Thanks to the following contributors that also participated to this release
@kamilszymanski, @magnet, @mrorii, @sinwe, @dfeist and all folks who came discussing in our Gitter room, Spring team for continuous extensive collaboration and @akarnokd for his usual wisdom.