So currently, by default, server actions are blocking.
By that, I mean that if the client executes >1 server action in quick succession, they will be queued, and each action will be called in order, only when the previous action resolves.
To put this more logically, let's imagine a client does the following:
serverAction() // 1
serverAction() // 2
serverAction() // 3
action 1 is called, once that is no longer pending, action 2 is called, once that finishes, then action 3 is called
Is there a way I can opt-out of the queueing behaviour and have all these actions run asynchronously?