Skip to content

Instantly share code, notes, and snippets.

@tomliversidge
Created June 24, 2017 13:42
Show Gist options
  • Save tomliversidge/df8ac250c4b96a1632de73815c697c3c to your computer and use it in GitHub Desktop.
Save tomliversidge/df8ac250c4b96a1632de73815c697c3c to your computer and use it in GitHub Desktop.
Saga 3.1
private Task Starting(IContext context)
{
if (context.Message is Started)
{
context.SpawnNamed(TryDebit(_from, -_amount), "DebitAttempt");
_behavior.Become(AwaitingDebitConfirmation);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment