File tree 1 file changed +2
-1
lines changed
src/main/java/rx/observers 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 50
50
* <ul>
51
51
* <li>Allows only single execution of either {@code onError} or {@code onCompleted}.</li>
52
52
* <li>Ensures that once an {@code onCompleted} or {@code onError} is performed, no further calls can be executed</li>
53
- * <li>If {@code unsubscribe} is called, calls {@code onCompleted} and forbids any further {@code onNext} calls.</li>
53
+ * <li>If {@code unsubscribe} is called, the upstream {@code Observable} is notified and the event delivery will be stopped in a
54
+ * best effort manner (i.e., further onXXX calls may still slip through).</li>
54
55
* <li>When {@code onError} or {@code onCompleted} occur, unsubscribes from the {@code Observable} (if executing asynchronously).</li>
55
56
* </ul>
56
57
* {@code SafeSubscriber} will not synchronize {@code onNext} execution. Use {@link SerializedSubscriber} to do
You can’t perform that action at this time.
0 commit comments