コード例 #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;
 }
コード例 #2
0
ファイル: ChannelAbortCommitTest.cs プロジェクト: ncdc/qpid
 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;
 }
コード例 #3
0
ファイル: ChannelReceiver.cs プロジェクト: ncdc/qpid
 public ChannelReceiver(ChannelContextParameters contextParameters, Binding channelBinding)
     : base(contextParameters, channelBinding)
 {
 }
コード例 #4
0
ファイル: ChannelEntity.cs プロジェクト: ncdc/qpid
 public ChannelEntity(ChannelContextParameters contextParameters, Binding channelBinding)
 {
     this.Parameters = contextParameters;
     this.Binding = channelBinding;
     this.Results = new List<string>();
 }
コード例 #5
0
ファイル: ChannelEntity.cs プロジェクト: tonyli71/qpid
 public ChannelEntity(ChannelContextParameters contextParameters, Binding channelBinding)
 {
     this.Parameters = contextParameters;
     this.Binding    = channelBinding;
     this.Results    = new List <string>();
 }
コード例 #6
0
 public ChannelReceiver(ChannelContextParameters contextParameters, Binding channelBinding)
     : base(contextParameters, channelBinding)
 {
 }