Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
import io.reactivex.*;
import io.reactivex.disposables.Disposable;

/**
* Wraps a Completable and exposes it as an Observable.
*
* @param <T> the value type
*/
public final class CompletableToObservable<T> extends Observable<T> {

final CompletableSource source;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import io.reactivex.internal.observers.DeferredScalarDisposable;

/**
* Wraps a MaybeSource and exposes it as a Flowable, relaying signals in a backpressure-aware manner
* Wraps a MaybeSource and exposes it as an Observable, relaying signals in a backpressure-aware manner
* and composes cancellation through.
*
* @param <T> the value type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import io.reactivex.internal.disposables.DisposableHelper;

/**
* Wraps a Single and exposes it as a Flowable.
* Wraps a Single and exposes it as an Observable.
*
* @param <T> the value type
*/
Expand Down