DotNetWorkQueue.Transport.Redis.Basic.RedisQueueCreation.RemoveQueue C# (CSharp) Method

RemoveQueue() public method

Attempts to delete an existing queue
Any data in the queue will be lost. Will cause exceptions in any producer/consumer that is connected
public RemoveQueue ( ) : QueueRemoveResult
return QueueRemoveResult
        public QueueRemoveResult RemoveQueue()
        {
            return QueueExists ? RemoveQueueInternal() : new QueueRemoveResult(QueueRemoveStatus.DoesNotExist);
        }

Usage Example

 /// <inheritdoc />
 public QueueRemoveResult RemoveQueue()
 {
     return(_creation.RemoveQueue());
 }