Example #1
0
 public ChannelAbortCommitTest(int numberOfThreads, bool sendAbort, bool receiveAbort, bool asyncSend, bool asyncReceive)
 {
     this.contextParameters = new ChannelContextParameters();
     this.contextParameters.NumberOfThreads     = numberOfThreads;
     this.contextParameters.SenderShouldAbort   = sendAbort;
     this.contextParameters.ReceiverShouldAbort = receiveAbort;
     this.contextParameters.AsyncSend           = asyncSend;
     this.contextParameters.AsyncReceive        = asyncReceive;
 }
Example #2
0
 public ChannelAbortCommitTest(int numberOfThreads, bool sendAbort, bool receiveAbort, bool asyncSend, bool asyncReceive)
 {
     this.contextParameters = new ChannelContextParameters();
     this.contextParameters.NumberOfThreads = numberOfThreads;
     this.contextParameters.SenderShouldAbort = sendAbort;
     this.contextParameters.ReceiverShouldAbort = receiveAbort;
     this.contextParameters.AsyncSend = asyncSend;
     this.contextParameters.AsyncReceive = asyncReceive;
 }
Example #3
0
 public ChannelReceiver(ChannelContextParameters contextParameters, Binding channelBinding)
     : base(contextParameters, channelBinding)
 {
 }
Example #4
0
 public ChannelEntity(ChannelContextParameters contextParameters, Binding channelBinding)
 {
     this.Parameters = contextParameters;
     this.Binding = channelBinding;
     this.Results = new List<string>();
 }
Example #5
0
 public ChannelEntity(ChannelContextParameters contextParameters, Binding channelBinding)
 {
     this.Parameters = contextParameters;
     this.Binding    = channelBinding;
     this.Results    = new List <string>();
 }
Example #6
0
 public ChannelReceiver(ChannelContextParameters contextParameters, Binding channelBinding)
     : base(contextParameters, channelBinding)
 {
 }