Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.84 KB

empty.md

File metadata and controls

55 lines (42 loc) · 1.84 KB

Rx.Observable.empty([scheduler])

Returns an empty observable sequence, using the specified scheduler to send out the single OnCompleted message.

Arguments

  1. [scheduler=Rx.Scheduler.immediate] (Scheduler): Scheduler to send the termination call on.

Returns

(Observable): An observable sequence with no elements.

Example

var source = Rx.Observable.empty();

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

// => Completed

Location

File:

Dist:

Prerequisites:

  • None

NPM Packages:

NuGet Packages:

Unit Tests: