Skip to content

Instantly share code, notes, and snippets.

@tomliversidge
Created June 24, 2017 13:57
Show Gist options
  • Save tomliversidge/a3dbf15fc6771220184600842462060c to your computer and use it in GitHub Desktop.
Save tomliversidge/a3dbf15fc6771220184600842462060c to your computer and use it in GitHub Desktop.
Saga 4.1
var retryAttempts = 10;
var supervisionStrategy = new OneForOneStrategy((pid, reason) =>
SupervisorDirective.Restart, retryAttempts)
Actor.FromProducer(() => new TransferProcess(...)
.WithChildSupervisorStrategy(supervisionStrategy);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment