Lets say I have 2 case statements inside of a while loop. Is there a way to make one of the case statements a higher priority? For example, both statements A and B (see pic below) modify the same data. Statement B will run more often, but I want it so that if statement A is triggered to execute then it will execute immediately and pull out of statement B even if it hasn't finished. Currently, I'm running into an issue where statement A is triggered to execute but it doesn't always execute because the program is currently in statement B. Thanks!