statelyai / xstate

Actor-based state management & orchestration for complex app logic.
https://stately.ai/docs
MIT License
26.98k stars 1.24k forks source link

[core] Ensure "stop" transitions are called in machine actors #4809

Closed davidkpiano closed 3 months ago

davidkpiano commented 6 months ago

This PR ensures that "stop" transitions are called in machines:

const machine = createMachine({
  on: {
    'xstate.stop': {
      actions: () => {
        // do cleanup, etc...
        console.log('Machine actor was just stopped');
      }
    }
  }
});

const actor = createActor(machine).start();

actor.stop();
// Logs "Machine actor was just stopped"
changeset-bot[bot] commented 6 months ago

🦋 Changeset detected

Latest commit: 21f09e24f36a43cecdcb8223c47450077325b5e2

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package | Name | Type | | ------ | ----- | | xstate | Patch |

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

codesandbox-ci[bot] commented 6 months ago

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.