Beispiel #1
0
 protected override void StartProcessFailures()
 {
     if (this.batchFailed)
     {
         // Retry should happen outside the transaction scope
         this.batch = new TransmitResponseBatch(this.TransportProxy, this.allWorkDoneDelegate);
         this.allWorkDoneDelegate = null;
     }
 }
 protected override void StartProcessFailures()
 {
     if (this.batchFailed)
     {
         // Retry should happen outside the transaction scope
         this.batch = new TransmitResponseBatch(this.TransportProxy, this.allWorkDoneDelegate);
         this.allWorkDoneDelegate = null;
     }
 }
Beispiel #3
0
 public TransmitResponseBatch(IBTTransportProxy transportProxy, AllWorkDoneDelegate allWorkDoneDelegate)
     : base(transportProxy, true)
 {
     this.allWorkDoneDelegate = allWorkDoneDelegate;
 }
 public TransmitResponseBatch(IBTTransportProxy transportProxy, AllWorkDoneDelegate allWorkDoneDelegate)
     : base(transportProxy, true)
 {
     this.allWorkDoneDelegate = allWorkDoneDelegate;
 }