Inheritance: AmqpObject
コード例 #1
0
ファイル: DuplexAmqpLink.cs プロジェクト: yvgopal/azure-amqp
        static void OnReceiverClose(IAsyncResult result)
        {
            DuplexAmqpLink thisPtr = (DuplexAmqpLink)result.AsyncState;

            thisPtr.OnOperationComplete(thisPtr.receiver, result, false);
        }
コード例 #2
0
ファイル: DuplexAmqpLink.cs プロジェクト: yvgopal/azure-amqp
        static void OnSenderOpen(IAsyncResult result)
        {
            DuplexAmqpLink thisPtr = (DuplexAmqpLink)result.AsyncState;

            thisPtr.OnOperationComplete(thisPtr.sender, result, true);
        }