outr / reactify

The first and only true Functional Reactive Programming framework for Scala.
MIT License
86 stars 4 forks source link

Listener Notification Type #14

Closed darkfrog26 closed 7 years ago

darkfrog26 commented 7 years ago

Currently when the value of Observable changes, the listeners are invoked without any insight into whether the invocation was caused by a direct firing of a change or as the result of a dependency changing. An additional type should be supplied to Listener.apply to let the listener know whether it was Direct or Derived.