I would like to repeatedly get a properties value and assign it to another property, but I don’t have a handle on Rx’s Observable creation quite yet. How do I create and subscribe to an observable that just constantly reads a property (maybe on a timer or with throttling)?
I would like to repeatedly get a properties value and assign it to another
Share
You can use the static
Intervaloperator to emit a value repeatedly on a given time span and then use aSelectopertor to transform it to the property value on the object you wish to poll.