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.