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

20 lines
531 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
import 'rxjs/add/operator/map';
import {Observable, Subscriber} from 'rxjs/Rx';
2016-02-11 20:01:17 -05:00
var obs = new Observable<number>((obs: Subscriber<any>) => {
var i = 0;
setInterval(() => obs.next(++i), 1000);
});
2016-02-11 20:01:17 -05:00
obs.map((i: number) => `${i} seconds elapsed`).subscribe(msg => console.log(msg));
// #enddocregion