/// <summary>
        /// 消费者(消费消息)
        /// </summary>
        public static void Received(string businessName, Action <string> callback, string exchangeType = "direct", Action errorCallback = null)
        {
            var t = Get(businessName);

            _rabbitMqHelper.Received(t.Item1, t.Item2, t.Item3, callback, exchangeType, errorCallback);
        }