Represents a source used to get and set the value of a BoolSignal
.
Typically, changing the value that a signal contains requires a total reassignment:
TouchGestures.onTap().subscribe((gesture) => {
someSignal = Reactive.val(true);
});
someSignal
is bound to a completely new signal which itself contains the desired value.BoolSignalSource
API provides the ability to change the value of the original signal without reassignment, with behavior similar to that of non-reactive programming models. Property | Description |
---|---|
signal | (get) signal: BoolSignal The signal being monitored by the BoolSignalSource object.Accessing the signal's value before one has been assigned via set() will return false . |
Method | Description |
---|---|
dispose | dispose(): void Disposes of the native resources associated with the BoolSignalSource object.The BoolSignalSource object will still exist as a JavaScript object but will not receive updates through future calls to set() . Do not call dispose() until you're certain that the signal is no longer required.When calling ReactiveModule.boolSignalSource , avoid reusing the sourceId of an object that you've called dispose() on. |
set | set(value: BoolSignal | boolean): void Sets the value of the signal monitored by the BoolSignalSource object to value .The updated signal value will be propagated throughout all signals related to the BoolSignalSource .If set() is called before signal , signal will return the value assigned by set() when called, rather than the default value of false .* value - the value to assign to the signal, as a boolean or BoolSignal . |