Hi,
I'm attempting to execute two AJAX requests in parallel. However, the state transition shouldn't occur until both are complete.
The current situation is that the AJAX calls are serial; they can run in parallel. One call will take slightly longer than the other.
What's the best way in SCION to create a gate that won't open until all parallel events are complete?
The specific example is "Add a product to an invoice" & "Create a credit card". These events can run in parallel. However, the "Charge card" call cannot run until these two events are complete.
TIA,
jec