RxJava总结(原)

Posted weizhxa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RxJava总结(原)相关的知识,希望对你有一定的参考价值。

---恢复内容开始---

1、RxJava的作用  

    RxJava is a Java VM implementation of Reactive Extensions: a library for composing asynchronous and event-based programs by using observable sequences.

    It extends the observer pattern to support sequences of data/events and adds operators that allow you to compose sequences together declaratively while abstracting away   concerns about things like low-level threading, synchronization, thread-safety and concurrent data structures.

    说白了就是大家都说的让你能一眼看出来你之前做什么,之后做什么。它不是简化了代码,而是简化了逻辑。它具有线程安全性。

2、RxJava的原理

    RxJava是基于观察者模式的。用户定义Observer之后,提供一个Observerble,由Observerble进行subscribe,就安心等待结果就行。

技术分享图片

3、RxJava的实现

  技术分享图片

4、RxJava的流程

  技术分享图片

5、RxJava的使用

 

以上是关于RxJava总结(原)的主要内容,如果未能解决你的问题,请参考以下文章

RxJava学习总结

RxJava操作符总结之过滤

[RxJava 响应式编程] 奉上一篇的全面的 RxJava2 方法总结·上

[RxJava 响应式编程] 奉上一篇全面的 RxJava2 方法总结·下

RxJava 常用总结以及原理理解

RxJava整合Retrofit遇到的问题总结