Skip to content

Commit

Permalink
Added MSDN links
Browse files Browse the repository at this point in the history
  • Loading branch information
zsxwing committed Sep 30, 2013
1 parent 8e0c8c0 commit d7a45d4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rxjava-core/src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ public static <T> Observable<T> create(OnSubscribeFunc<T> func) {
* the type of the items (ostensibly) emitted by the Observable
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
* the {@link Observer}'s {@link Observer#onCompleted() onCompleted} method
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229670(v=vs.103).aspx">MSDN: Observable.Empty Method</a>
*/
public static <T> Observable<T> empty() {
return from(new ArrayList<T>());
Expand All @@ -559,6 +560,7 @@ public static <T> Observable<T> empty() {
* @return an Observable that returns no data to the {@link Observer} and immediately invokes
* the {@link Observer}'s {@link Observer#onCompleted() onCompleted} method with
* the specified scheduler.
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229066(v=vs.103).aspx">MSDN: Observable.Empty Method (IScheduler)</a>
*/
public static <T> Observable<T> empty(Scheduler scheduler) {
return Observable.<T>empty().subscribeOn(scheduler);
Expand Down

0 comments on commit d7a45d4

Please sign in to comment.