Reactor 3 Reference Guide[完全中英翻译]

4.1.Flux, an Asynchronous Sequence of 0-N Items

The following image shows how aFluxtransforms items:

Reactor 3 Reference Guide[完全中英翻译]_第1张图片

AFluxis a standardPublisherthat represents an asynchronous sequence of 0 to N emitted items, optionally terminated by either a completion signal or an error. As in the Reactive Streams spec, these three types of signal translate to calls to a downstream Subscriber’sonNext,onComplete, andonErrormethods.

Flux是Publisher代表0到N个发射项目的异步序列的标准,可以选择通过完成信号或错误终止。 如反应式流规范中,这三种类型的信号转换为呼叫到下游Subscriber的onNext,onComplete和onError方法。

全部内容访问
https://df007df.github.io/Rea...

你可能感兴趣的:(java,reactor,stream)