Cold vs. Hot Observables
Learn about the differences between cold and hot observables.
We'll cover the following...
We'll cover the following...
Cold observable
An Observable is considered cold if it is not actively emitting items. It only starts emitting items when it is subscribed to. Each subscription to a cold Observable will cause it to emit the underlying sequence from beginning to end for each Observer.
Note: The exact values of the sequence may differ for each
Observer, depending on the underlying action the ...