What is the correct way to multicast an Observable to multiple subscribers using a single execution in RxJS?
-
A
Wrap it in a new Observable using new Observable()
-
B
Use the share() operator
-
C
Call subscribe() multiple times on the same Observable
-
D
Convert it to a Promise with toPromise()