2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-11-22 16:29:53 -05:00
|
|
|
/* tslint:disable:no-console */
|
2015-12-07 19:38:12 -05:00
|
|
|
// #docregion Observable
|
|
|
|
import 'rxjs/add/operator/map';
|
|
|
|
|
2016-08-22 20:17:23 -04:00
|
|
|
import {Observable} from 'rxjs/Observable';
|
|
|
|
import {Subscriber} from 'rxjs/Subscriber';
|
2016-06-08 19:38:52 -04:00
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
const obs = new Observable<number>((obs: Subscriber<any>) => {
|
|
|
|
let i = 0;
|
2016-03-23 20:34:15 -04:00
|
|
|
setInterval(() => obs.next(++i), 1000);
|
2015-12-07 19:38:12 -05:00
|
|
|
});
|
2016-02-11 20:01:17 -05:00
|
|
|
obs.map((i: number) => `${i} seconds elapsed`).subscribe(msg => console.log(msg));
|
2015-12-07 19:38:12 -05:00
|
|
|
// #enddocregion
|