From f2bd7ec8c01c09a445754a2d64d518b165b6773d Mon Sep 17 00:00:00 2001 From: David Karnok Date: Wed, 8 Jul 2026 09:33:11 +0200 Subject: [PATCH] Add Streamable class to README base classes section --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50f3763edef..d3a945fade0 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,12 @@ Note that RxJava 4 components now live under `io.reactivex.rxjava4` and the base RxJava 4 features several base classes you can discover operators on: - - [`io.reactivex.rxjava4.core.Flowable`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Flowable.html): 0 .. N flows, supporting Reactive-Streams and backpressure + - [`io.reactivex.rxjava4.core.Flowable`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Flowable.html): 0 .. N flows, supporting Reactive-Streams and backpressure, - [`io.reactivex.rxjava4.core.Observable`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Observable.html): 0 .. N flows, no backpressure, - [`io.reactivex.rxjava4.core.Single`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Single.html): a flow of exactly 1 item or an error, - [`io.reactivex.rxjava4.core.Completable`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Completable.html): a flow without items but only a completion or error signal, - [`io.reactivex.rxjava4.core.Maybe`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Maybe.html): a flow with no items, exactly one item or an error. + - [`io.reactivex.rxjava4.core.Streamable`](http://reactivex.io/RxJava/4.x/javadoc/io/reactivex/rxjava4/core/Streamable.html): 0 .. N flows based on virtual blocking and `CompletionStage`-based state machines with native backpressure. ### Some terminology