Update Web Reactive documentation

This commit is contained in:
Sebastien Deleuze
2016-09-01 15:41:44 +02:00
parent dcade06fa0
commit 76ed101a23

View File

@@ -100,8 +100,9 @@ in any one of the following ways:
* `Mono<Account>` -- serialize without blocking the given Account when the `Mono` completes.
* `Single<Account>` -- same but using RxJava.
* `Flux<Account>` -- streaming scenario, possibly SSE depending on the requested content type.
* `Flux<SseEvent>` -- SSE streaming.
* `Observable<SseEvent>` -- same but using RxJava.
* `Observable<Account>` -- same but using RxJava `Observable` type.
* `Flowable<Account>` -- same but using RxJava 2 `Flowable` type.
* `Flux<ServerSentEvent>` -- SSE streaming.
* `Mono<Void>` -- request handling completes when the `Mono` completes.
* `void` -- request handling completes when the method returns;
implies a synchronous, non-blocking controller method.