I'm trying to figure out how NgZone works. Does the following example make sense? I read that every xhr call triggers the change detection. So this seems meaningful to me. Is it?
persistData() {
this.ngZone.runOutsideAngular(() => {
this.http.callBackend... // return value is not relevant
});
}