Created
June 24, 2017 13:57
-
-
Save tomliversidge/a3dbf15fc6771220184600842462060c to your computer and use it in GitHub Desktop.
Saga 4.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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