Skip to content

Instantly share code, notes, and snippets.

@davidkpiano
Created January 23, 2020 13:57
Show Gist options
  • Save davidkpiano/a343c686bcc3ea6765ab27a7f36804aa to your computer and use it in GitHub Desktop.
Save davidkpiano/a343c686bcc3ea6765ab27a7f36804aa to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
"initial": "ingest",
"states": {
"ingest": {
"initial": "pending",
"states": {
"pending": {
"on": {
"RESOLVE": "success",
"ERROR": "failure"
}
},
"failure": {},
"success": {
"type": "final"
}
},
"onDone": "transform"
},
"transform": {
"initial": "pending",
"states": {
"pending": {
"on": {
"RESOLVE": "success",
"ERROR": "failure"
}
},
"failure": {},
"success": {
"type": "final"
}
},
"onDone": "training"
},
"training": {
"initial": "pending",
"states": {
"pending": {
"on": {
"RESOLVE": "success",
"ERROR": "failure"
}
},
"failure": {},
"success": {
"type": "final"
}
},
"onDone": "scoring"
},
"scoring": {
"initial": "pending",
"states": {
"pending": {
"on": {
"RESOLVE": "success",
"ERROR": "failure"
}
},
"failure": {},
"success": {
"type": "final"
}
}
}
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment