Async Pipes help transforming data coming from an Observable and resolve into desired dataset. It also takes care of the Subscription and Unsubscription of the Observable.
this.http.get(url).pipe((map((res) => {
// some handling of the response here
return res;
});