예제 #1
0
 private void ResumeOutgoingFlows()
 {
     foreach (OutgoingFlow flow in Persistence.GetPendingOutgoingFlows())
     {
         Resume(flow);
     }
 }
예제 #2
0
 private void ResumeOutgoingFlows()
 {
     // tries to redeliver if that's the case
     foreach (var flow in Persistence.GetPendingOutgoingFlows())
     {
         Resume(flow);
     }
 }