Skip to content

Instantly share code, notes, and snippets.

@kapilreddy
Created June 18, 2018 10:26
Show Gist options
  • Save kapilreddy/7243299979cde84b0dd1ebd90f2c9591 to your computer and use it in GitHub Desktop.
Save kapilreddy/7243299979cde84b0dd1ebd90f2c9591 to your computer and use it in GitHub Desktop.
Kaioken
Kaioken
Initialize Kaioken
Message received -> Consume messages
Consume messages
Message received -> Consume messages
Enough messages received -> Bulk start
Bulk start
Bulk success -> Consume messages
Retriable error -> Bulk start
Non-recoverable error -> Exit
Bulk success
Messages
Exit
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