We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Javadocs
This is an early release for 3.0.0 to allow preparations for the breaking API changes and cleanups.
Please check out the wiki page What's different in 3.0 from time to time for the details and migration guide.
combineLatest
Observable
Flowable
zipIterable
zip(O(O))
concatMapX
combineLatestArray
limit
take
groupBy
blockingIterable
takeLast(time)
window
No changes in this release.
System.getProperties()
addThrowable
The text was updated successfully, but these errors were encountered:
Closing via v3.0.0-RC3.
Sorry, something went wrong.
No branches or pull requests
Version 3.0.0-RC3 - September 17, 2019 (Maven)
Javadocs
This is an early release for 3.0.0 to allow preparations for the breaking API changes and cleanups.
Please check out the wiki page What's different in 3.0 from time to time for the details and migration guide.
Dependency changes
API changes
combineLatest
inObservable
+Flowable
. (3.x: Remove vararg overloads for combineLatest in Observable + Flowable #6635)zipIterable
, removezip(O(O))
, adjustconcatMapX
argument order. (3.x: Rename zipIterable, remove zip(O(O)), adjust concatMapX arg order #6638)combineLatest
methods that take an array tocombineLatestArray
. (3.x: Rename combineLatest methods that take an array to combineLatestArray #6640)limit
and make its backpressure behavior default intake
(3.x: constrain upstream requests from take, remove limit operator #6650)Behavior changes
groupBy
will now close groups that do not get subscribed synchronously in order to avoid group leaks and upstream cancellation issues. (3.x: Fix groupBy not canceling upstream due to group abandonment #6642)take
now limits the maximum upstream request amount to the provided value instead of requesting unbounded. (3.x: constrain upstream requests from take, remove limit operator #6650)Bugfixes
blockingIterable
not unblocking when force-disposed. (3.x: Fix blockingIterable not unblocking when force-disposed #6626)groupBy
not canceling upstream due to group abandonment. (3.x: Fix groupBy not canceling upstream due to group abandonment #6642)takeLast(time)
last events time window calculation. (3.x: Fix takeLast(time) last events time window calculation. #6648)window
not creating windows properly (3.x: Fix size+time bound window not creating windows properly #6652)Documentation enhancements
No changes in this release.
Other
System.getProperties()
due to security restrictions. (3.x: Avoid using System.getProperties() due to security restrictions #6637)addThrowable
, "2.x" and null-value error messages. (3.x: Cleanup addThrowable, "2.x" and null-value error messages #6639)The text was updated successfully, but these errors were encountered: