Created
March 29, 2012 12:20
-
-
Save cburgdorf/2236772 to your computer and use it in GitHub Desktop.
Is this a bug?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rx.Observable.fromArray([1, 2, 3]) | |
.concat(Rx.Observable.throwException("woah nellie!")) | |
.retry(3) | |
.onErrorResumeNext() | |
.subscribe( | |
function (next) { | |
console.log(next); | |
}); | |
1 | |
2 | |
3 | |
1 | |
2 | |
3 | |
1 | |
2 | |
3 | |
TypeError: Cannot call method 'subscribe' of undefined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment