Hi @Simon Boudrias You Should Know About Cold vs. Hot Observables .
Cold observables start to run by subscription, i.e. the observed sequence only begins to push the values ββto the observers when the Subscribe function is called. Values ββalso do not apply to subscribers.
In your case, you can use publish with connect or refCount
var rx = require('rx-lite'); var _ = require('lodash'); var obs = rx.Observable.fromArray([1, 2]); var processing = obs.map(function (number) {
source share