forked from richardszalay/raix
-
Notifications
You must be signed in to change notification settings - Fork 0
removeTimestamp
richardszalay edited this page May 20, 2011
·
6 revisions
Removed the TimeStamped wrapper created by a call to timestamp.
function removeTimestamp() : IObservable.<*>
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.
IObservable.<*>
Observable.range(0, 3)
.timestamp()
.removeTimestamp()
.subscribe(
function(x : int) : void { trace(x.toString()); }
);
// Trace output is:
// 0
// 1
// 2