I'm sure there's something in programming lingo for this. But I'm a project manager, not a programmer, so we get project manager lingo.
I'm updating my poseorder code, so you can remove someone from the list. I want to flag this person has posed (so it can send the alert to whomever is next), and then remove them. I need the 'has posed' bit of code to run BEFORE the 'remove them' bit of code.
Here's the actual code snippet:
strcat(
u( f.poseorder, %qp ),
remit( %1, u( .msg, Pose Order, [name(%2)] has removed [name(%qp)]. )),
u( .msg, Pose Order, You remove [name(%qp)]. ),
wipe( %ql/d.pose.*.%qp )
)
f.poseorder
needs to run and finish before the wipe()
goes.
Now, normally, if I needed something delayed I'd just use @wait. But there's not a wait() equivalent that I can put into the strcat(). Unless there is one?
So, ideas, suggestions... thanks!