Skip to content

2050utopia/RxComponentLifecycle

 
 

Repository files navigation

RxComponentLifecycle

Rx binding of new Android Architecture Component Lifecycle

Download

def arch_version = "1.0.0-alpha3"

dependencies {
    compile 'com.github.florent37:rxcomponent-lifecycle:1.0.2'

    annotationProcessor "android.arch.lifecycle:compiler:$arch_version"
    compile "android.arch.lifecycle:runtime:$arch_version"
    compile "android.arch.lifecycle:extensions:$arch_version"
    
    compile 'io.reactivex.rxjava2:rxjava:2.1.0'
}

Don't forget to add google's maven

allprojects {
    repositories {
        jcenter()
        maven { url 'https://maven.google.com' }
    }
}

Usage

Observable.timer(10, TimeUnit.SECONDS) //async task

                .flatMap(value -> RxLifecycle.with(getLifecycle()).onlyIfResumedOrStarted(value))  
                //only perform the code below if the screen is visible
                //(give it the value)
               
                 .subscribe(event -> //do what you want to display);
RxLifecycle.with(getLifecycle())

           .onDestroy() //receive all events
           
           .subscribe(event -> //do what you had to do on view destroy);

Events

RxLifecycle.with(getLifecycle())

           .onCreate() 
           .onStart() 
           .onResume() 
           
           .onPause() 
           .onStop() 
           .onDestroy()
            
           .onEvent() //all events
           
           .subscribe(event -> //do what you had to do on view destroy);

Credits

Author: Florent Champigny http://www.florentchampigny.com/

Blog : http://www.tutos-android-france.com/

Follow me on Google+ Follow me on Twitter Follow me on LinkedIn

License

Copyright 2017 Florent37, Inc.

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

   http://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

Rx binding of new Android Architecture Component Lifecycle

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 99.6%
  • Shell 0.4%