File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
rxjava-core/src/main/java/rx Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -7039,6 +7039,18 @@ public final BlockingObservable<T> toBlockingObservable() {
7039
7039
return BlockingObservable .from (this );
7040
7040
}
7041
7041
7042
+ /**
7043
+ * Converts an Observable into a {@link BlockingObservable} (an Observable with blocking operators).
7044
+ *
7045
+ * This method is an alias for {@link #toBlockingObservable()}.
7046
+ *
7047
+ * @return a {@code BlockingObservable} version of this Observable
7048
+ * @see <a href="https://github.com/Netflix/RxJava/wiki/Blocking-Observable-Operators">RxJava Wiki: Blocking Observable Observers</a>
7049
+ */
7050
+ public final BlockingObservable <T > toBlocking () {
7051
+ return toBlockingObservable ();
7052
+ }
7053
+
7042
7054
/**
7043
7055
* Returns an Observable that emits a single item, a list composed of all the items emitted by the source
7044
7056
* Observable.
You can’t perform that action at this time.
0 commit comments