Skip to content
richardszalay edited this page May 20, 2011 · 7 revisions

Removed the TimeInterval wrapper created by a call to timeInterval.

function removeTimeInterval() : IObservable.<*>

Remarks

The returned sequence completes when the source sequence completes.

The returned sequence raises an error if the source sequence raises an error.

Return Value

IObservable.<valueClass>

Examples

Observable.range(0, 3)
    .timeInterval()
    .removeTimeInterval()
    .subscribe(
        function(x : int) : void { trace(x.toString()); }
    );

    // Trace output is:
    // 0
    // 1
    // 2
Clone this wiki locally