public static Task <bool> QueueExistsAsync(this IDeclare declare, string queue)
        {
            IBunny bunny = CheckGetBunny(declare, queue, "queue");

            return(bunny.QueueExistsAsync(queue));
        }