paldepind / flyd

The minimalistic but powerful, modular, functional reactive programming library in JavaScript.
MIT License
1.56k stars 85 forks source link

Is flyd hot or cold observer? #148

Closed puppetmaster3 closed 7 years ago

puppetmaster3 commented 7 years ago

For example, in most.js you have to add 'multicast' keyword to be hot and kefir js and xstream is hot.

(hot means multiple listeners all get the latest value. most js if fast due to cold default).

?

paldepind commented 7 years ago

It's hot and multicast :fire:

puppetmaster3 commented 7 years ago

thx