I have two states (person 1 home/away, person 2 home/away). I would like to create a function or something similar that can take the two states in concideration.
Something like:
if (person 1 = home or person 2 = home ) {
//do something
} else {
// do something else
}
I was thinking the join function might do the work but I do not know how to create the logic if this is the right choice.
If the 2 states or not stored in the message (payload) then
I would store them in a flow context variable.
Each time one of the 2 states should be updated, you update the respective flow context variable (e.g. in a change node) and then you route that to the switch node (that is doings the switch based on the values of the 2 context variables).