Ejemplo n.º 1
0
 public TxnBatch(IBTTransportProxy transportProxy, ControlledTermination control, IDtcTransaction comTxn, CommittableTransaction transaction, ManualResetEvent orderedEvent, bool makeSuccessCall) : base(transportProxy, makeSuccessCall)
 {
     this.control      = control;
     this.comTxn       = comTxn;
     this.transaction  = transaction;
     this.orderedEvent = orderedEvent;
 }
Ejemplo n.º 2
0
 public ReceiveBatch(IBTTransportProxy transportProxy, ControlledTermination control, ManualResetEvent orderedEvent, int depth) : base(transportProxy, true)
 {
     this.control      = control;
     this.orderedEvent = orderedEvent;
     this.innerBatch   = null;
     this.depth        = depth;
 }
Ejemplo n.º 3
0
 private SyncReceiveSubmitBatch(IBTTransportProxy transportProxy, ControlledTermination control,
                                ManualResetEvent submitComplete, int depth)
     : base(transportProxy, control, submitComplete, depth)
 {
     this.control               = control;
     this.workDone              = submitComplete;
     base.ReceiveBatchComplete += new ReceiveBatchCompleteHandler(OnBatchComplete);
 }
Ejemplo n.º 4
0
        public TxnBatch(IBTTransportProxy transportProxy, ControlledTermination control, CommittableTransaction transaction, ManualResetEvent orderedEvent, bool makeSuccessCall) : base(transportProxy, makeSuccessCall)
        {
            this.control = control;

            this.comTxn = TransactionInterop.GetDtcTransaction(transaction);

            //  the System.Transactions transaction - must be the original transaction - only that can be used to commit
            this.transaction = transaction;

            this.orderedEvent = orderedEvent;
        }
Ejemplo n.º 5
0
        public ReceiveBatch(IBTTransportProxy transportProxy, ControlledTermination control, ReceiveBatchCompleteHandler callback, int depth) : base(transportProxy, true)
        {
            this.control = control;

            if (callback != null)
            {
                this.ReceiveBatchComplete += callback;
            }

            this.innerBatch = null;
            this.depth      = depth;
        }
Ejemplo n.º 6
0
 protected Receiver(
     string name,
     string version,
     string description,
     string transportType,
     Guid clsid,
     string propertyNamespace,
     Type endpointType)
     : base(
         name,
         version,
         description,
         transportType,
         clsid,
         propertyNamespace)
 {
     this.endpointType = endpointType;
     this.control      = new ControlledTermination();
 }
Ejemplo n.º 7
0
 protected AsyncTransmitter(
     string name,
     string version,
     string description,
     string transportType,
     Guid clsid,
     string propertyNamespace,
     Type endpointType,
     int maxBatchSize)
     : base(
         name,
         version,
         description,
         transportType,
         clsid,
         propertyNamespace)
 {
     this.endpointType = endpointType;
     this.maxBatchSize = maxBatchSize;
     this.control      = new ControlledTermination();
 }
Ejemplo n.º 8
0
 public abstract void Open(string uri, IPropertyBag config, IPropertyBag bizTalkConfig, IPropertyBag handlerPropertyBag, IBTTransportProxy transportProxy, string transportType, string propertyNamespace, ControlledTermination control);
Ejemplo n.º 9
0
 public SyncReceiveSubmitBatch(IBTTransportProxy transportProxy, ControlledTermination control, int depth)
     : this(transportProxy, control, new ManualResetEvent(false), depth)
 {
 }
Ejemplo n.º 10
0
 public AbortOnAllFailureReceiveTxnBatch(IBTTransportProxy transportProxy, ControlledTermination control, CommittableTransaction transaction, ManualResetEvent orderedEvent, StopProcessing stopProcessing) : base(transportProxy, control, transaction, orderedEvent, false)
 {
     this.stopProcessing = stopProcessing;
 }
Ejemplo n.º 11
0
 public AbortOnFailureReceiveTxnBatch(IBTTransportProxy transportProxy, ControlledTermination control, IDtcTransaction comTxn, CommittableTransaction transaction, ManualResetEvent orderedEvent, TxnAborted txnAborted)
     : base(transportProxy, control, comTxn, transaction, orderedEvent, false)
 {
     this.txnAborted = txnAborted;
 }
Ejemplo n.º 12
0
 public SingleMessageReceiveTxnBatch(IBTTransportProxy transportProxy, ControlledTermination control, CommittableTransaction transaction, ManualResetEvent orderedEvent) : base(transportProxy, control, transaction, orderedEvent, true)
 {
 }