mailbox icon indicating copy to clipboard operation
mailbox copied to clipboard

Mailbox is the predictable states & transitions container for actors.

Results 3 mailbox issues
Sort by recently updated
recently updated
newest added

As the Alpha version has been published to NPM - https://github.com/statelyai/xstate/pull/3148#issuecomment-1138664920

Be careful about the transitions: an external transition will cause the `actions.send(e, { to: invokedMachineId })` to throw exception if the `invokedMachine` is inside the external transition state. Learn more...

documentation

If the `action` is sensitive to the current state, then a workaround will be needed. For example: ```ts createMachine({ states: { idle: {}, busy: { always: { 10: 'idle', },...

documentation