Back to Rxjs

This is RxJS v 4. Find the latest version here

doc/api/core/operators/startasync.md

4.1.02.1 KB
Original Source

This is RxJS v 4. Find the latest version here

Rx.Observable.startAsync(functionAsync)

Invokes the asynchronous function, surfacing the result through an observable sequence.

Arguments

  1. functionAsync (Function): Asynchronous function which returns a Promise to run.

Returns

(Observable): An observable sequence exposing the function's Promises's value or error.

Example

js
var source = Rx.Observable.startAsync(function () {
    return RSVP.Promise.resolve(42);
});

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

// => Next: 42
// => Completed

Location

File:

Dist:

Prerequisites:

NPM Packages:

NuGet Packages:

Unit Tests: