0

Does Apache qpid-cpp messaging 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);
yodhevauhe
  • 765
  • 3
  • 11
  • 33

1 Answers1

1

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.

ncdc
  • 341
  • 3
  • 7