File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
rxjava-core/src/main/java/rx Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -542,6 +542,7 @@ public static <T> Observable<T> create(OnSubscribeFunc<T> func) {
542
542
* the type of the items (ostensibly) emitted by the Observable
543
543
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
544
544
* the {@link Observer}'s {@link Observer#onCompleted() onCompleted} method
545
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229670(v=vs.103).aspx">MSDN: Observable.Empty Method</a>
545
546
*/
546
547
public static <T > Observable <T > empty () {
547
548
return from (new ArrayList <T >());
@@ -559,6 +560,7 @@ public static <T> Observable<T> empty() {
559
560
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
560
561
* the {@link Observer}'s {@link Observer#onCompleted() onCompleted} method with
561
562
* the specified scheduler.
563
+ * @see <a href="http://msdn.microsoft.com/en-us/library/hh229066(v=vs.103).aspx">MSDN: Observable.Empty Method (IScheduler)</a>
562
564
*/
563
565
public static <T > Observable <T > empty (Scheduler scheduler ) {
564
566
return Observable .<T >empty ().subscribeOn (scheduler );
You can’t perform that action at this time.
0 commit comments