Skip to content

Instantly share code, notes, and snippets.

@objectfoo
Created May 20, 2025 01:46
Show Gist options
  • Select an option

  • Save objectfoo/8679c442e3f3abc260bf5d26e910d670 to your computer and use it in GitHub Desktop.

Select an option

Save objectfoo/8679c442e3f3abc260bf5d26e910d670 to your computer and use it in GitHub Desktop.
stateDiagram-v2

[*] --> OrderDataPackage: click
OrderDataPackage --> OrderError
OrderDataPackage --> OrderSuccess
OrderError --> [*]
OrderSuccess --> PollDelay

PollDelay --> DataExportStatus
DataExportStatus --> DataExportError
DataExportStatus --> DataExportGenerating
DataExportStatus --> DataExportReady

DataExportError --> [*]

DataExportGenerating --> PollDelay

DataExportReady --> OptionalDownload
OptionalDownload --> Download
OptionalDownload --> Cancel
Download --> [*]
Cancel --> [*]
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment