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
|
2016-08-22 20:17:23 -04:00
|
|
|
import {Observable} from 'rxjs/Observable';
|
|
|
|
import {Subscriber} from 'rxjs/Subscriber';
|
2015-12-07 19:38:12 -05:00
|
|
|
import {map} from 'rxjs/operator/map';
|
|
|
|
|
2016-11-12 08:08:58 -05:00
|
|
|
const obs = new Observable<number>((sub: Subscriber<number>) => {
|
|
|
|
let i = 0;
|
2016-03-23 20:34:15 -04:00
|
|
|
setInterval(() => sub.next(++i), 1000);
|
2015-12-07 19:38:12 -05:00
|
|
|
});
|
2016-02-11 20:01:17 -05:00
|
|
|
map.call(obs, (i: number) => `${i} seconds elapsed`).subscribe((msg: string) => console.log(msg));
|
2015-12-07 19:38:12 -05:00
|
|
|
// #enddocregion
|