You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It assumes you want to end the sequence in the opposing lifecycle event - e.g., if subscribing during START, it will
terminate on STOP. If you subscribe after PAUSE, it will terminate at the next destruction event (e.g.,
PAUSE will terminate in STOP).
Providers
Where do lifecycles come from? Generally, they are provided by an appropriate LifecycleProvider<T>. But where are
those implemented?
You have a few options for that:
Use rxlifecycle-components and subclass the provided RxActivity, RxFragment, etc. classes.
Use Android's lifecycle + rxlifecycle-android-lifecycle to generate providers.
Write the implementation yourself.
If you use rxlifecycle-components, just extend the appropriate class, then use the built-in bindToLifecycle() (or bindUntilEvent()) methods:
RxLifecycle does not actually unsubscribe the sequence. Instead it terminates the sequence. The way in which
it does so varies based on the type:
Observable, Flowable and Maybe - emits onCompleted()
Single and Completable - emits onError(CancellationException)
If a sequence requires the Subscription.unsubscribe() behavior, then it is suggested that you manually handle
the Subscription yourself and call unsubscribe() when appropriate.
Kotlin
The rxlifecycle-kotlin module provides built-in extensions to the base RxJava types:
implementation 'com.trello.rxlifecycle4:rxlifecycle:4.0.2'// If you want to bind to Android-specific lifecycles
implementation 'com.trello.rxlifecycle4:rxlifecycle-android:4.0.2'// If you want pre-written Activities and Fragments you can subclass as providers
implementation 'com.trello.rxlifecycle4:rxlifecycle-components:4.0.2'// If you want pre-written support preference Fragments you can subclass as providers
implementation 'com.trello.rxlifecycle4:rxlifecycle-components-preference:4.0.2'// If you want to use Android Lifecycle for providers
implementation 'com.trello.rxlifecycle4:rxlifecycle-android-lifecycle:4.0.2'// If you want to use Kotlin syntax
implementation 'com.trello.rxlifecycle4:rxlifecycle-kotlin:4.0.2'// If you want to use Kotlin syntax with Android Lifecycle
implementation 'com.trello.rxlifecycle4:rxlifecycle-android-lifecycle-kotlin:4.0.2'
License
Copyright (C) 2016 Trello
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
About
Lifecycle handling APIs for Android apps using RxJava