I'd like to create an Observable
using as source a variables: this.pending
.
I want to create an Observable which generates a feed every time this.pending
value changes.
I mean, when I do:
this.pending = false;
in some place of my code, I want to receive a false
feed on my subscription, and so on...
Any ideas?