We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 039a703 commit 5747017Copy full SHA for 5747017
src/main/java/rx/SingleSubscriber.java
@@ -24,6 +24,9 @@
24
* {@code Single} calls the SingleSubscriber's {@link #onSuccess} and {@link #onError} methods to provide
25
* notifications. A well-behaved {@code Single} will call a SingleSubscriber's {@link #onSuccess} method exactly
26
* once or the SingleSubscriber's {@link #onError} method exactly once.
27
+ * <p>
28
+ * Note, that if you want {@link #isUnsubscribed} to return {@code true} after {@link #onSuccess} or {@link #onError}
29
+ * invocation, you need to invoke {@link #unsubscribe} in these methods.
30
*
31
* @see <a href="http://reactivex.io/documentation/observable.html">ReactiveX documentation: Observable</a>
32
* @param <T>
0 commit comments