Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 2.02 KB

startasync.md

File metadata and controls

57 lines (44 loc) · 2.02 KB

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

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: