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