08-30-2022 10:14 PM
I want to use actor to do a sequnce of action,first I send one or more message ,but sometimes I want stop the actor do not do the message in queue,how can I do?
use send normal stop or Estop will shut up the actor, I do not want to shut up actor,I only want the actor do not do the next message
08-31-2022 06:36 AM
You can send an message with the priority set to high and then the actor can react to that message be dequeuing everything in its message queue. This will effectively flush the queue.
09-02-2022 02:30 AM
I can send a message with High priority,but the normal message still in the queue,then next cycle it do that is I do not want
so how to clear the queue or flush the queue,I can not find a VI to do this