RxJS - Condivisione Multicasting Operator

È un alias per l'operatore multicast () con l'unica differenza è che non è necessario chiamare manualmente il metodo connect () per avviare l'abbonamento.

Sintassi

share()

Esempio

import { interval} from 'rxjs';
import { take, share} from 'rxjs/operators';

let observer = interval(1000).pipe(take(3), share());
const subscribe_one = observer.subscribe(
   x => console.log("Value from Sub1 = "+x)
);
const subscribe_two = observer.subscribe(
   x => console.log("Value from Sub2 = "+x)
);
setTimeout(() => {
   const subscribe_three = observer.subscribe(
      x => console.log("Value from Sub3 = "+x)
   );
}, 2000);

Produzione