Skip to content

Instantly share code, notes, and snippets.

@yonkeltron
Last active March 20, 2019 16:31
Show Gist options
  • Save yonkeltron/9be505f7e7abb5940c62329cebb63022 to your computer and use it in GitHub Desktop.
Save yonkeltron/9be505f7e7abb5940c62329cebb63022 to your computer and use it in GitHub Desktop.
SK Action
SK Action
Listening*
receive message -> Handling Message
Handling Message
Contractify*
passed contract -> Processing
failed contract -> Queue Error
Processing
finished -> Emitting Response
Queue Error
finished -> Tracing
Emitting Response
finished -> Tracing
Tracing
finished -> Listening
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment