RabbitMQ.Client.Impl.AutorecoveringModel.QueueDelete C# (CSharp) Method

QueueDelete() public method

public QueueDelete ( string queue, bool ifUnused, bool ifEmpty ) : uint
queue string
ifUnused bool
ifEmpty bool
return uint
        public uint QueueDelete(string queue,
            bool ifUnused,
            bool ifEmpty)
        {
            var result = m_delegate.QueueDelete(queue, ifUnused, ifEmpty);
            m_connection.DeleteRecordedQueue(queue);
            return result;
        }
AutorecoveringModel