Skip to content
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.

Latest commit

 

History

History
59 lines (46 loc) · 2.58 KB

throw.md

File metadata and controls

59 lines (46 loc) · 2.58 KB

Rx.Observable.throw(exception, [scheduler])

Rx.Observable.throwError(exception, [scheduler])

Rx.Observable.throwException(exception, [scheduler]) ** DEPRECATED **

Returns an observable sequence that terminates with an exception, using the specified scheduler to send out the single onError message.

Arguments

  1. exception (Error): Error the observable sequence terminates with.
  2. [scheduler=Rx.Scheduler.immediate] (Scheduler): Scheduler to send the exceptional termination call on. If not specified, defaults to the immediate scheduler.

Returns

(Observable): The observable sequence that terminates exceptionally with the specified exception object.

Example

var source = Rx.Observable.return(42)
    .selectMany(Rx.Observable.throw(new Error('error!')));

var subscription = source.subscribe(
    function (x) {
        console.log('Next: ' + x);
    },
    function (err) {
        console.log('Error: ' + err);
    },
    function () {
        console.log('Completed');
    });

// => Error: Error: error!

Location

File:

Dist:

Prerequisites:

NPM Packages:

NuGet Packages:

Unit Tests: