andThen

Returns a Completable that first runs this Completable and waits for its completion, then runs the other Completable.

Please refer to the corresponding RxJava document.


fun <T> Completable.andThen(single: Single<T>): Single<T>

Returns a Single that first runs this Completable and waits for its completion, then runs the other Single.

Please refer to the corresponding RxJava document.


fun <T> Completable.andThen(observable: Observable<T>): Observable<T>

Returns an Observable that first runs this Completable and waits for its completion, then runs the other Observable.

Please refer to the corresponding RxJava document.


fun <T> Completable.andThen(maybe: Maybe<T>): Maybe<T>

Returns an Observable that first runs this Completable and waits for its completion, then runs the other Maybe.

Please refer to the corresponding RxJava document.