john1337 opened a new issue, #506:
URL: https://github.com/apache/rocketmq-spring/issues/506
Message message = new Message(TOPIC, ("Hello scheduled message " +
i).getBytes(StandardCharsets.UTF_8));
// This message will be delivered to consumer 10 seconds later.
//message.setDelayTimeSec(10);
// The effect is the same as the above
// message.setDelayTimeMs(10_000L);
// Set the specific delivery time, and the effect is the same as
the above
message.setDeliverTimeMs(System.currentTimeMillis() + 3600_000L);
想实现类似的功能没看到哪个接口支持,只找到了固定延迟级别的接口:
SendResult syncSend(String destination, Message<?> message, long timeout,
int delayLevel)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]