Skip to content

Commit d7a45d4

Browse files
committed
Added MSDN links
1 parent 8e0c8c0 commit d7a45d4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,7 @@ public static <T> Observable<T> create(OnSubscribeFunc<T> func) {
542542
* the type of the items (ostensibly) emitted by the Observable
543543
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
544544
* 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>
545546
*/
546547
public static <T> Observable<T> empty() {
547548
return from(new ArrayList<T>());
@@ -559,6 +560,7 @@ public static <T> Observable<T> empty() {
559560
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
560561
* the {@link Observer}'s {@link Observer#onCompleted() onCompleted} method with
561562
* 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>
562564
*/
563565
public static <T> Observable<T> empty(Scheduler scheduler) {
564566
return Observable.<T>empty().subscribeOn(scheduler);

0 commit comments

Comments
 (0)