File tree 1 file changed +4
-3
lines changed
rxjava-core/src/main/java/rx 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4389,15 +4389,16 @@ public final void onNext(T args) {
4389
4389
}
4390
4390
4391
4391
/**
4392
- * Modifies an Observable so that it invokes an action when it calls {@code onCompleted} or {@code onError} <p>
4393
- * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/doOnCompleted.png">
4392
+ * Modifies an Observable so that it invokes an action when it calls {@code onCompleted} or {@code onError}.
4393
+ * <p>
4394
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/doOnTerminate.png">
4394
4395
* <p>
4395
4396
* This differs from {@code finallyDo} in that this happens BEFORE onCompleted/onError are emitted.
4396
4397
*
4397
4398
* @param onTerminate
4398
4399
* the action to invoke when the source Observable calls {@code onCompleted} or {@code onError}
4399
4400
* @return the source Observable with the side-effecting behavior applied
4400
- * @see <a href="https://github.com/Netflix/RxJava/wiki/Observable-Utility-Operators#wiki-dooncompleted ">RxJava Wiki: doOnCompleted ()</a>
4401
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Observable-Utility-Operators#wiki-doonterminate ">RxJava Wiki: doOnTerminate ()</a>
4401
4402
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229804.aspx">MSDN: Observable.Do</a>
4402
4403
*/
4403
4404
public final Observable <T > doOnTerminate (final Action0 onTerminate ) {
You can’t perform that action at this time.
0 commit comments