Another Noob Question - Sync vs Async Execution Methods


#1

Not a problem more of an affirmation concerning the differences between Sync and Async execution methods which is what maybe causing a timing issue with one of my pistons.

So here is a sample Piston that has two sections; the first one that is utilizing the Sync Execution Method and the second one that is utilizing the Async Execution Method.

So in section 1 am I correct to assume that it will take 30 seconds before the Piston has been re-started (resumed) while in the second section the piston will be re-started almost instantaneously?


#2

Yes, your understanding is correct. Asynch blocks happen in parallel, sync execution is done top-to-bottom.