public interface IMutableProperty<V> extends IProperty<V>
| Modifier and Type | Method and Description |
|---|---|
rx.Subscription |
bind(IProperty<V> source)
Binds to the latest values of
source to the receiver. |
rx.Subscription |
bind(rx.Observable<V> source)
Binds an
Observable to the receiver, updating the receiver's value to the latest
value sent by the observable.
The binding will automatically terminate when the receiver is finalized,
or when the observable completes. |
void |
setValue(V value)
Sets value of the receiver.
|
getObservable, getValuevoid setValue(V value)
rx.Subscription bind(rx.Observable<V> source)
Observable to the receiver, updating the receiver's value to the latest
value sent by the observable.
The binding will automatically terminate when the receiver is finalized,
or when the observable completes.