From 76ed101a23e0e33fde601f783024cc91582d01bf Mon Sep 17 00:00:00 2001 From: Sebastien Deleuze Date: Thu, 1 Sep 2016 15:41:44 +0200 Subject: [PATCH] Update Web Reactive documentation --- src/asciidoc/web-reactive.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/asciidoc/web-reactive.adoc b/src/asciidoc/web-reactive.adoc index 324f4ebdfe..1e957b49d5 100644 --- a/src/asciidoc/web-reactive.adoc +++ b/src/asciidoc/web-reactive.adoc @@ -100,8 +100,9 @@ in any one of the following ways: * `Mono` -- serialize without blocking the given Account when the `Mono` completes. * `Single` -- same but using RxJava. * `Flux` -- streaming scenario, possibly SSE depending on the requested content type. -* `Flux` -- SSE streaming. -* `Observable` -- same but using RxJava. +* `Observable` -- same but using RxJava `Observable` type. +* `Flowable` -- same but using RxJava 2 `Flowable` type. +* `Flux` -- SSE streaming. * `Mono` -- request handling completes when the `Mono` completes. * `void` -- request handling completes when the method returns; implies a synchronous, non-blocking controller method.