Repeat an observable in Angular (RXJS)

interval(1000).subscribe(() => {
    this._getLatest().subscribe(latest => {
        //...
    });
});