You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
node.on.done('X', (msg) => node.say('next step or this step?');
If the server is fast and client is slow the message might arrive after the client is DONE but before the client has started the new step (the stepping procedure is async to let local listeners finish). In this case, the message belongs to the previous step. Vice versa the message will be fired on the next step.
If messages are critical to be fired in the next (e.g., sending the payoff for the game to EndScreen), it will fail.
The text was updated successfully, but these errors were encountered:
Usecase:
client:
server:
If the server is fast and client is slow the message might arrive after the client is DONE but before the client has started the new step (the stepping procedure is async to let local listeners finish). In this case, the message belongs to the previous step. Vice versa the message will be fired on the next step.
If messages are critical to be fired in the next (e.g., sending the payoff for the game to EndScreen), it will fail.
The text was updated successfully, but these errors were encountered: