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
+35-12Lines changed: 35 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -4299,7 +4299,9 @@ public final <TIntermediate, TResult> Observable<TResult> multicast(
4299
4299
4300
4300
/**
4301
4301
* Returns a {@link ConnectableObservable} that upon connection causes the source Observable to push results
4302
-
* into the specified subject.
4302
+
* into the specified subject. A Connectable Observable resembles an ordinary Observable, except that it
4303
+
* does not begin emitting items when it is subscribed to, but only when its <code>connect()</code> method
4304
+
* is called.
4303
4305
*
4304
4306
* @param subject
4305
4307
* the {@link Subject} for the {@link ConnectableObservable} to push source items into
@@ -4506,8 +4508,9 @@ public final <R> Observable<R> parallel(final Func1<Observable<T>, Observable<R>
4506
4508
}
4507
4509
4508
4510
/**
4509
-
* Returns a {@link ConnectableObservable}, which waits until its {@link ConnectableObservable#connect connect} method is called before it begins emitting items to those {@link Observer}s that
4510
-
* have subscribed to it.
4511
+
* Returns a {@link ConnectableObservable}, which waits until its
4512
+
* {@link ConnectableObservable#connect connect} method is called before it begins emitting items to those
@@ -4569,7 +4572,9 @@ public final Subject<T, T> call() {
4569
4572
}
4570
4573
4571
4574
/**
4572
-
* Returns an Observable that emits {@code initialValue} followed by the items emitted by a {@link ConnectableObservable} that shares a single subscription to the source Observable.
4575
+
* Returns a {@link ConnectableObservable} that emits {@code initialValue} followed by the items emitted by
4576
+
* the source Observable. A Connectable Observable resembles an ordinary Observable, except that it does not
4577
+
* begin emitting items when it is subscribed to, but only when its <code>connect()</code> method is called.
0 commit comments