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
|
|
|
|
*/
|
|
|
|
|
2015-12-07 19:38:12 -05:00
|
|
|
// #docregion Observable
|
2016-02-11 20:01:17 -05:00
|
|
|
import {Observable, Subscriber} from 'rxjs/Rx';
|
|
|
|
var obs = new Observable<number>((obs: Subscriber<number>) => {
|
2015-12-07 19:38:12 -05:00
|
|
|
var i = 0;
|
2016-03-23 20:34:15 -04:00
|
|
|
setInterval(() => { obs.next(++i); }, 1000);
|
2015-12-07 19:38:12 -05:00
|
|
|
});
|
2016-03-23 20:35:48 -04:00
|
|
|
obs.subscribe(i => console.log(`${i} seconds elapsed`));
|
2015-12-07 19:38:12 -05:00
|
|
|
// #enddocregion
|