Replies: 1 comment 6 replies
-
There's not much that needs to happen asynchronously. Can you please describe your use-case in more detail? If you mean execution as in action execution, then once you've determined the state, you would execute state.actions.forEach(action => {
// execute action
action.exec();
}); |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Really great library guys, very comprehensive and thorough!
I'm looking at xstate for a server side application, where events would be queued to an external messaging system, and the machine would be rehydrated on every event request. I gather this requires a custom interpreter, but after taking a stab at building something, I'm not even sure it's really possible given how much is happening asynchronously.
Do you know if anyone has done anything like this, or would you have any advice on how to go about building something like this?
Beta Was this translation helpful? Give feedback.
All reactions