signaledValue
The current signal value for the shareable event.
Declaration
var signaledValue: UInt64 { get set }Mentioned in
Discussion
When you set the value of a shared event, its value is changed only if you provide a larger value than the value currently stored in the event. Setting this property signals the event. Commands waiting on the event are allowed to run if the new value is equal to or greater than the value for which they are waiting. Similarly, setting the event’s value triggers notifications if the value is equal to or greater than the value for which they are waiting.