コード例 #1
0
ファイル: Controller.cs プロジェクト: modulexcite/IL2JS
 public IAsyncResult BeginDeclare(TimeSpan timeout, AsyncCallback callback, object state)
 {
     Utils.Trace(TraceLevel.Info, "{0}: Begin declare a transaction", this);
     Declare declare = new Declare();
     AmqpMessage message = Controller.CreateCommandMessage(declare);
     return this.sendLink.BeginSendMessage(message, this.GetDeliveryTag(), AmqpConstants.EmptyBinary, timeout, callback, state);
 }