Spring WebFlux
  • Introduction
  • WebFlux
    • 性能测试
    • Demo
    • 优势及适用场景
  • Reactor3
    • 渊源
  • 响应式编程
    • share
    • share2
  • RxJava2
  • Vertx
  • other
    • IO介绍
    • 同步异步
    • Spring5 新功能
Powered by GitBook
On this page

Was this helpful?

RxJava2

Previousshare2NextVertx

Last updated 6 years ago

Was this helpful?

一些好的博客:;

RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM。

译文

RxJava - JVM响应式扩展Reactive Extensions 用于使用Java VM的可观察序列编写异步和基于事件的程序的库。

ReactiveXis a library for composing asynchronous and event-based programsby using observable sequences.

It extendsthe observer patternto support sequences of data and/or 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, concurrent data structures, and non-blocking I/O.

译文:

ReactiveX是一个通过使用可观察序列来编写异步和基于事件的程序的库。

它扩展了以支持数据和/或事件序列,并增加了运算符,使您可以声明性地组合序列,同时抽象出对低级线程,同步,线程安全性,并发数据结构和非线程等事物的关注阻塞I / O

RxJava 2.x 已经按照 Reactive-Streams specification 规范完全的重写了

https://blog.csdn.net/caihongdao123/article/details/51897793
https://www.jianshu.com/p/0cd258eecf60
观察者模式