angular-cn/modules/@angular/examples/facade/ts/async/observable_pure.ts

19 lines
556 B
TypeScript
Raw Normal View History

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// #docregion Observable
2016-02-11 20:01:17 -05:00
import {Observable, Subscriber} from 'rxjs/Rx';
import {map} from 'rxjs/operator/map';
2016-02-11 20:01:17 -05:00
var obs = new Observable<number>((sub: Subscriber<number>) => {
var i = 0;
setInterval(() => sub.next(++i), 1000);
});
2016-02-11 20:01:17 -05:00
map.call(obs, (i: number) => `${i} seconds elapsed`).subscribe((msg: string) => console.log(msg));
// #enddocregion