Does each subscription by async pipe in angular template to ngxs selector actually creates new stream or all streams are shared and its just one subscription?
I mean if selectors are piped like for example: .pipe(shareReplay({ bufferSize: 1, refCount: true })) ... ?