Posts /

RxJava介绍

Twitter Facebook Google+
26 May 2017

RxJava

RxJava 是什么

官方的解释是: RxJava是 ReactiveX 在JVM上的一个实现,ReactiveX使用Observable序列组合异步和基于事件的程序。

Rx 是一个多语言实现

RxJava 支持Java 6或者更新的版本,以及其它的JVM语言如 Groovy, Clojure, JRuby, Kotlin 和 Scala。RxJava 可用于更多的语言环境,而不仅仅是Java和Scala,而且它致力于尊重每一种JVM语言的习惯。

为什么要使用 RxJava

所以RxJava是很必要学习并使用的。

RxJava 怎么使用呢?

  1. 简单的使用

    Observable.just("hello", "my", "name", "is", "nichool")
                  .subscribe(new Action1<String>() {
                      @Override
                      public void call(String s) {
                          LogUtils.LogW(s);
                      }
                  });
    

    通过just来创建一个被观察者,被观察者中决定将会做的事情,然后subscribe进行注册观察者。

    以下为在观察者中将会打印的 :

    RxJavaDemo: hello
    RxJavaDemo: my
    RxJavaDemo: name
    RxJavaDemo: is
    RxJavaDemo: nichool
    
  2. 复杂的操作

    Student[] students= new Student[]{
               new Student("nichool", 100),
               new Student("li", 54),
               new Student("wang", 64),
               new Student("wu", 70),
               new Student("liu", 59),
               new Student("liu", 60),
       };
    
       Observable.from(students).filter(new Func1<Student, Boolean>() {
           @Override
           public Boolean call(Student student) {
               return student.score >= 60;
           }
       }).map(new Func1<Student, String>() {
           @Override
           public String call(Student student) {
               return student.mName + " is a qualified student";
           }
       }).subscribe(new Action1<String>() {
           @Override
           public void call(String s) {
               LogUtils.LogW(s);
           }
       });
    

    以上代码为:在学生中查找及格的学生,并打印合格学生表。

    RxJavaDemo: nichool is a qualified student
    RxJavaDemo: wang is a qualified student
    RxJavaDemo: wu is a qualified student
    RxJavaDemo: liu is a qualified student
    

    如果想了解更多的操作符使用 请查看操作方法这篇文章

  3. 在Android上的配置与使用

    compile 'io.reactivex:rxandroid:1.2.1'
    // Because RxAndroid releases are few and far between, it is recommended you also
    // explicitly depend on RxJava's latest version for bug fixes and new features.
    compile 'io.reactivex:rxjava:1.1.6'
    

    在需要使用RxJava的对应模块下的build.gradle 中添加这几句 (如需使用其他的版本,请修改版本号)。使用RxAndroid时最好带着RxJava,官方的解释是RxAndroid的版本还很少,需要用RxJava来弥补它的不足

RxAndroid

解释: rxjava-android 模块包含RxJava的Android特定的绑定代码。它给RxJava添加了一些类,用于帮助在Android应用中编写响应式(reactive)的组件。

Android中使用 RxLifecycle 更好的保证及时的注册与解除注册。

 .compose(this.<Long>bindToLifecycle())   
 //这个订阅关系跟Activity绑定,Observable  和activity生命周期同步

RxLifecycle更多方法请自行百度


Twitter Facebook Google+