doc: 阅读webclient文档
This commit is contained in:
@@ -94,6 +94,7 @@
|
||||
- [prefetch](#prefetch-1)
|
||||
- [zip](#zip)
|
||||
- [zipWith](#zipwith)
|
||||
- [defer](#defer)
|
||||
|
||||
# Reactor
|
||||
## Reactive Programming
|
||||
@@ -1363,3 +1364,8 @@ prefetch用于控制每个inner publisher在途的元素上限
|
||||
#### zipWith
|
||||
`zipWith`可以将当前flux和另一个publisher一起执行`zip`操作。
|
||||
|
||||
### defer
|
||||
`Mono.defer`会创建一个Mono对象a,每次每次Mono对象a被下游调用`subscribe`时,都会通过`supplier`生成一个新的Mono对象b,下游实际订阅的是新的Mono对象b。
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user