We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac1552 commit 6a572ecCopy full SHA for 6a572ec
src/main/java/rx/observers/Subscribers.java
@@ -68,8 +68,8 @@ public void onNext(T t) {
68
69
/**
70
* Creates a {@link Subscriber} that receives the emissions of any {@code Observable} it subscribes to via
71
- * {@link Subscriber#onNext onNext} but ignores {@link Subscriber#onError onError} and
72
- * {@link Subscriber#onCompleted onCompleted} notifications.
+ * {@link Subscriber#onNext onNext} but ignores {@link Subscriber#onCompleted onCompleted} notifications;
+ * it will throw an {@link OnErrorNotImplementedException} if {@link Subscriber#onError onError} is invoked.
73
*
74
* @param onNext
75
* a function that handles each item emitted by an {@code Observable}
0 commit comments