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

Removed the TimeStamped wrapper created by a call to timestamp.

function removeTimestamp() : IObservable.<*>

Remarks

Will the an ArgumentException if the source sequence does not have a type class of TimeStamped.

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.<*>

Examples

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

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