当autoAck设置为true时,只要消息被消费者处理,不管成功与否,服务器都会删除该消息,

而当autoAck设置为false时,只有消息被处理,且反馈结果后才会删除

 

 

std::string strUri = "amqp://guest:guest@localhost:5672//";


channel = AmqpClient::Channel::CreateFromUri(strUri);

无法连接