Concept Flow - Async pipe for template subscriptions
Async pipe subscribes
Observable emits value
Template receives value
Template updates view
Observable emits new value
Async pipe receives new value
Template updates view again
Component destroyed
Async pipe unsubscribes
The async pipe subscribes to an Observable automatically, updates the template when new values arrive, and unsubscribes when the component is destroyed.