You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rxjava-core/src/main/java/rx/Observable.java
+30-30Lines changed: 30 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -589,8 +589,8 @@ public void onNext(T args) {
589
589
* <p>
590
590
* This is similar to {@link #subscribe(Observer)} but blocks. Because it blocks it does not need the {@link Observer#onCompleted()} or {@link Observer#onError(Exception)} methods.
591
591
*
592
-
* @param onNext
593
-
* {@link Action1}
592
+
* @param o
593
+
* onNext {@link Action1 action}
594
594
* @throws RuntimeException
595
595
* if error occurs
596
596
*/
@@ -901,7 +901,7 @@ public static <T> Observable<T> where(Observable<T> that, Func1<T, Boolean> pred
901
901
* @param <T>
902
902
* the type of items in the {@link Iterable} sequence and the type emitted by the resulting Observable
903
903
* @return an Observable that emits each item in the source {@link Iterable} sequence
@@ -3705,7 +3705,7 @@ public Iterable<T> mostRecent(T initialValue) {
3705
3705
* NOTE: If strong reasons for not depending on package names comes up then the implementation of this method can change to looking for a marker interface.
3706
3706
*
3707
3707
* @param f
3708
-
* @return
3708
+
* @return {@code true} if the given function is an internal implementation, and {@code false} otherwise.
Copy file name to clipboardExpand all lines: rxjava-core/src/main/java/rx/operators/OperationDematerialize.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@
28
28
29
29
/**
30
30
* Dematerializes the explicit notification values of an observable sequence as implicit notifications.
31
-
* See http://msdn.microsoft.com/en-us/library/hh229047(v=vs.103).aspx for the Microsoft Rx equivalent.
31
+
* See <a href="http://github.com/%3C/span%3Ehttp://msdn.microsoft.com/en-us/library/hh229047(v=vs.103).aspx%3Cspan%20class="x x-first x-last">">here</a> for the Microsoft Rx equivalent.
32
32
*/
33
33
publicfinalclassOperationDematerialize {
34
34
@@ -38,7 +38,7 @@ public final class OperationDematerialize {
38
38
* @param sequence
39
39
* An observable sequence containing explicit notification values which have to be turned into implicit notifications.
40
40
* @return An observable sequence exhibiting the behavior corresponding to the source sequence's notification values.
Copy file name to clipboardExpand all lines: rxjava-core/src/main/java/rx/operators/OperationMaterialize.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,17 +33,17 @@
33
33
* <p>
34
34
* In other words, converts a sequence of OnNext, OnError and OnCompleted events into a sequence of ObservableNotifications containing the OnNext, OnError and OnCompleted values.
35
35
* <p>
36
-
* See http://msdn.microsoft.com/en-us/library/hh229453(v=VS.103).aspx for the Microsoft Rx equivalent.
36
+
* See <a href="http://github.com/%3C/span%3Ehttp://msdn.microsoft.com/en-us/library/hh229453(v=VS.103).aspx%3Cspan%20class="x x-first x-last">">here</a> for the Microsoft Rx equivalent.
37
37
*/
38
38
publicfinalclassOperationMaterialize {
39
39
40
40
/**
41
41
* Materializes the implicit notifications of an observable sequence as explicit notification values.
42
42
*
43
-
* @param source
43
+
* @param sequence
44
44
* An observable sequence of elements to project.
45
45
* @return An observable sequence whose elements are the result of materializing the notifications of the given sequence.
// wrap in a Func so that if a chain is built up, then asynchronously subscribed to twice we will have 2 instances of Take<T> rather than 1 handing both, which is not thread-safe.
// wrap in a Func so that if a chain is built up, then asynchronously subscribed to twice we will have 2 instances of Take<T> rather than 1 handing both, which is not thread-safe.
0 commit comments