Skip to content

Commit 21e7523

Browse files
committed
Add MSDN links
1 parent 0608155 commit 21e7523

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

rxjava-core/src/main/java/rx/observables/BlockingObservable.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ public Iterator<T> getIterator() {
179179
* @return the first item emitted by the source {@link Observable}
180180
* @throws IllegalArgumentException
181181
* if source contains no elements
182+
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229177(v=vs.103).aspx">MSDN: Observable.First</a>
182183
*/
183184
public T first() {
184185
return from(o.first()).single();
@@ -193,6 +194,7 @@ public T first() {
193194
* @return the first item emitted by the {@link Observable} that matches the predicate
194195
* @throws IllegalArgumentException
195196
* if no such items are emitted.
197+
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229739(v=vs.103).aspx">MSDN: Observable.First</a>
196198
*/
197199
public T first(Func1<? super T, Boolean> predicate) {
198200
return from(o.first(predicate)).single();

0 commit comments

Comments
 (0)