Releases: ggrell/RxReactor
Releases · ggrell/RxReactor
1.0.0
0.9.5
0.9.1
0.4.5
0.4.0
Removed ReactorProvider
implementation which was just a copy of ViewModel
customized to store & create Reactor
instances. Since this implementation didn't keep up with AndroidX changes, I decided to remove it and use ViewModel
instead; it's not quite as clean, but it'll be more maintainable in the long run. The sample code shows an example of how to use it.
BREAKING CHANGES
- Removed
ReactorProvider
and associatedReactorStore
&ReactorStoreFragment
0.3.3
0.3.2
0.3.1
0.3.0
- Added
ReactorWithEffects
which allows for side-effect emissions without needed to pass them via theState
. TheMutationWithEffect
interface needs to be applied to theMutation
class, and then a single mutation given aneffect
getter (usually anAction
namedTriggerEffect(val effect: Effect)
). - Updated from v28 support libraries to the latest Jetpack AndroidX libraries.