diff --git a/src/main/java/io/reactivex/observers/package-info.java b/src/main/java/io/reactivex/observers/package-info.java index cb00733554..ad5e8d4d7a 100644 --- a/src/main/java/io/reactivex/observers/package-info.java +++ b/src/main/java/io/reactivex/observers/package-info.java @@ -15,7 +15,10 @@ */ /** - * Default wrappers and implementations for Observer-based consumer classes and interfaces; - * utility classes for creating them from callbacks. + * Default wrappers and implementations for Observer-based consumer classes and interfaces, + * including disposable and resource-tracking variants and + * the {@link io.reactivex.subscribers.TestObserver} that allows unit testing + * {@link io.reactivex.Observable}-, {@link io.reactivex.Single}-, {@link io.reactivex.Maybe}- + * and {@link io.reactivex.Completable}-based flows. */ package io.reactivex.observers; diff --git a/src/main/java/io/reactivex/package-info.java b/src/main/java/io/reactivex/package-info.java index 5c9065ddb8..0df7f0aaf5 100644 --- a/src/main/java/io/reactivex/package-info.java +++ b/src/main/java/io/reactivex/package-info.java @@ -14,7 +14,7 @@ * limitations under the License. */ /** - * Base reactive classes: Flowable, Observable, Single and Completable; base reactive consumers; + * Base reactive classes: Flowable, Observable, Single, Maybe and Completable; base reactive consumers; * other common base interfaces. * *
A library that enables subscribing to and composing asynchronous events and @@ -43,9 +43,9 @@ * *
Services which intend on exposing data asynchronously and wish * to allow reactive processing and composition can implement the - * {@link io.reactivex.Flowable}, {@link io.reactivex.Observable}, {@link io.reactivex.Single} - * or {@link io.reactivex.Completable} class which then allow consumers to subscribe to them - * and receive events.
+ * {@link io.reactivex.Flowable}, {@link io.reactivex.Observable}, {@link io.reactivex.Single}, + * {@link io.reactivex.Maybe} or {@link io.reactivex.Completable} class which then allow + * consumers to subscribe to them and receive events. *Usage examples can be found on the {@link io.reactivex.Flowable}/{@link io.reactivex.Observable} and {@link org.reactivestreams.Subscriber} classes.
*/ package io.reactivex; diff --git a/src/main/java/io/reactivex/subscribers/package-info.java b/src/main/java/io/reactivex/subscribers/package-info.java index 22838c91c3..409efd6e79 100644 --- a/src/main/java/io/reactivex/subscribers/package-info.java +++ b/src/main/java/io/reactivex/subscribers/package-info.java @@ -15,7 +15,9 @@ */ /** - * Default wrappers and implementations for Subscriber-based consumer classes and interfaces; - * utility classes for creating them from callbacks. + * Default wrappers and implementations for Subscriber-based consumer classes and interfaces, + * including disposable and resource-tracking variants and + * the {@link io.reactivex.subscribers.TestSubscriber} that allows unit testing + * {@link io.reactivex.Flowable}-based flows. */ package io.reactivex.subscribers;