public override void _Private_ExchangeDelete(string exchange, bool ifUnused, bool nowait)
        {
            ExchangeDelete method = new ExchangeDelete(exchange, ifUnused, nowait);

            if (nowait)
            {
                ModelSend(method);
            }
            else
            {
                ModelRpc <ExchangeDeleteOk>(method);
            }
        }
Ejemplo n.º 2
0
        public override void _Private_ExchangeDelete(string exchange, bool ifUnused, bool nowait)
        {
            ExchangeDelete method = new ExchangeDelete(exchange, ifUnused, nowait);

            if (nowait)
            {
                ModelSend(ref method);
            }
            else
            {
                ModelRpc(ref method, ProtocolCommandId.ExchangeDeleteOk);
            }
        }