Changelog History
Page 1
-
v3.0.0
February 14, 2020General availability of RxAndroid 3.0 for use with RxJava 3.0!
๐ฆ The Maven groupId has changed to
io.reactivex.rxandroid3
and the package is nowio.reactivex.rxjava3.android
.๐ป The APIs and behavior of RxAndroid 3.0.0 is otherwise exactly the same as RxAndroid 2.1.1 with one notable exception:
โฑ Schedulers created via
AndroidSchedulers.from
now deliver async messages by default. โฑ This is also true forAndroidSchedulers.mainThread()
.๐ For more information about RxJava 3.0 see its release notes.
๐ Version 2.x can be found at https://github.com/ReactiveX/RxAndroid/blob/2.x/CHANGES.md
๐ Version 1.x can be found at https://github.com/ReactiveX/RxAndroid/blob/1.x/CHANGES.md
-
v2.0.0-RC1
August 25, 2016๐ RxAndroid 2.0 has been rewritten from scratch to support RxJava 2.0.
โฑ The library still offers the same APIs: a scheduler and stream cancelation callback that know about
โฑ the main thread, a means of creating a scheduler from anyLooper
, and plugin support for the
๐ฆ main thread sheduler. They just reside in a new package,io.reactivex.android
, and may have
slightly different names.๐ For more information about RxJava 2.0 see its RC1 release notes
Download:
compile 'io.reactivex.rxjava2:rxandroid:2.0.0-RC1'
-
v1.2.1
August 25, 2016- ๐ New:
AndroidSchedulers.reset()
allows clearing the scheduler cache such that the next call to
โฑAndroidSchedulers.mainThread()
will ask theRxAndroidSchedulerHook
to re-create it. This API
โฑ is experimental to matchSchedulers.reset()
in RxJava. - RxJava dependency now points at v1.1.6.
- ๐ New:
-
v1.2.0
May 04, 2016- โฑ Rewrite the Android-specific schedulers (main thread or custom) to greatly reduce allocation and
๐ performance overhead of scheduling work. - โฑ
HandlerScheduler.create
has been deprecated in favor ofAndroidSchedulers.from(Looper)
as
โฑ aLooper
is the actual mechanism of scheduling on Android, notHandler
. - ๐ Fix: Correct the behavior of
AndroidSchedulers.mainThread()
to only invoke the registered
โฑRxAndroidSchedulersHook
for creating the main thread scheduler and to cache the result instead
๐ of invoking it every time. This behvior change eliminates a performance overhead and brings
behavior in line with RxJava. If you were relying on the ability to change the main thread
โฑ scheduler over time (such as for tests), return a delegating scheduler from the hook which allows
changing the delegate instance at will. - RxJava dependency now points at v1.1.4.
- ๐
RxAndroidPlugins.reset()
is now marked as@Experimental
to match the RxJava method of the
same name and behavior.
- โฑ Rewrite the Android-specific schedulers (main thread or custom) to greatly reduce allocation and
-
v1.1.0
December 09, 2015- ๐ New:
MainThreadSubscription
utility class runs itsonUnsubscribe
action on the Android main
thread. This aids in adding tear-down actions which must be executed on the main thread without
having to deal with posting to the main thread yourself. - ๐ Fix: Lazily initialize
mainThread()
scheduler so that no Android code is run when overridden.
โ This allows unit tests overriding the implementation to work correctly. - RxJava dependency now points at v1.1.0.
Download:
compile 'io.reactivex:rxandroid:1.1.0'
- ๐ New: