Parameter | Description |
filter | String that indicates that you want to observe those key/value pairs for which the input filter field matches this field. An empty string as the value of either the filter parameter or the input filter field indicates that there is no filtering. If the value of the filter is "not equal to" parameter is true, and you specify a value for the filter parameter, the Change Observer block observes key/value pairs for which the input filter field does NOT match the value of the filter parameter. |
keyToDelete | String that indicates a key for which you want to delete data from the Change Observer block’s internal store of data. Invoke the deleteKey operation to delete the data associated with this key. |
filter is "not equal to" | Boolean that indicates whether you want to match or not match the value of the filter parameter. When the filter is "not equal to" parameter is true, the Change Observer block observes key/value pairs for which the input filter field does NOT match the value of the filter parameter. |
Operation | Description |
reset | The Change Observer block stores data about the number of unique keys it has observed and their most recent associated values. This operation flushes that data; it is no longer accessible to the Change Observer block. |
deleteKey | Deletes the key defined by the keyToDelete parameter. This operation deletes data from the Change Observer block’s internal store of data. If the value of the keyToDelete parameter is an empty string, this operation does nothing. |
Feed | Fields | Description |
input | stream | String that contains the key for which you want the Change Observer block to observe changes. Typically, the key is the instance ID of a sub-scenario. The Change Observer block ignores blank keys, that is, a key that is an empty string. |
watchValue | String that contains the field you want to watch. Typically, this is the value of a sub-scenario variable. | |
filter | String that contains a filter for determining the key/value pairs you are interested in. |
Feed | Fields | Description |
change | stream | String that contains the key that this change is for. Typically, this is the instance ID of a sub-scenario. |
oldValue | String that contains the value of the variable being observed just before the value changed. | |
newValue | String that contains the new value of the variable being observed. |