Apache qpid setDelay
Does Apache qpid-cpp messa开发者_如何学JAVAging api support delayed delivery of message as in ActiveMQ?
TextMessage message = session.createTextMessage("test msg");
long time = 60 * 1000;
message.setLongProperty(ScheduledMessage.AMQ_SCHEDULED_DELAY, time);
No, this is not currently supported (current version is 0.10). If you'd like to see this included in a future version, I would recommend creating a feature request in the Qpid JIRA if one doesn't exist yet.
精彩评论