Is there a way to generate an Observable using the variable this.pending
as its source?
I'm looking to create an Observable that will produce a new feed each time the value of this.pending
changes.
For example, if I update this.pending
to be false in my code, I would like to receive a feed with the value false in my subscription.
Any suggestions on how to achieve this?