Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created February 21, 2014 13:48
Show Gist options
  • Save jbogard/9134508 to your computer and use it in GitHub Desktop.
Save jbogard/9134508 to your computer and use it in GitHub Desktop.
public class BatchSaga : IContainSagaData {
public int TotalWork { get; set; }
public int WorkCompleted { get; set }
public void Handle(WorkCompleted message) {
WorkCompleted++;
if (WorkCompleted == TotalWork) {
Bus.Send(new BatchDone());
MarkAsComplete();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment