doc: reactor文档添加目录
This commit is contained in:
@@ -1,3 +1,35 @@
|
|||||||
|
- [Reactor](#reactor)
|
||||||
|
- [Reactive Programming](#reactive-programming)
|
||||||
|
- [命令式迁移到响应式](#命令式迁移到响应式)
|
||||||
|
- [可组合性与可读性](#可组合性与可读性)
|
||||||
|
- [Assembly Line](#assembly-line)
|
||||||
|
- [Operators](#operators)
|
||||||
|
- [Nothing Happens Until You subscribe()](#nothing-happens-until-you-subscribe)
|
||||||
|
- [backpressure](#backpressure)
|
||||||
|
- [hot \& cold](#hot--cold)
|
||||||
|
- [Subscriber和Publisher](#subscriber和publisher)
|
||||||
|
- [Publisher](#publisher)
|
||||||
|
- [Subscriber](#subscriber)
|
||||||
|
- [Reactor Core](#reactor-core)
|
||||||
|
- [Flux `0...n`](#flux-0n)
|
||||||
|
- [Mono `0...1`](#mono-01)
|
||||||
|
- [创建Mono/Flux并进行订阅的方式](#创建monoflux并进行订阅的方式)
|
||||||
|
- [String sequence](#string-sequence)
|
||||||
|
- [Flux.empty](#fluxempty)
|
||||||
|
- [Flux.range](#fluxrange)
|
||||||
|
- [Lambda Subscribe](#lambda-subscribe)
|
||||||
|
- [Disposable](#disposable)
|
||||||
|
- [BaseSubscriber](#basesubscriber)
|
||||||
|
- [backpressure](#backpressure-1)
|
||||||
|
- [buffer](#buffer)
|
||||||
|
- [prefetch](#prefetch)
|
||||||
|
- [初始请求](#初始请求)
|
||||||
|
- [补充优化(Replenishing Optimization)](#补充优化replenishing-optimization)
|
||||||
|
- [limitRate](#limitrate)
|
||||||
|
- [lowTie](#lowtie)
|
||||||
|
- [limitRequest](#limitrequest)
|
||||||
|
|
||||||
|
|
||||||
# Reactor
|
# Reactor
|
||||||
## Reactive Programming
|
## Reactive Programming
|
||||||
响应式编程是一种异步编程范式,关注于`数据流`和`状态变化的传播`。java的响应式编程接口被包含在java9的`Flow`中。
|
响应式编程是一种异步编程范式,关注于`数据流`和`状态变化的传播`。java的响应式编程接口被包含在java9的`Flow`中。
|
||||||
|
|||||||
Reference in New Issue
Block a user