RongtongJin commented on issue #506:
URL:
https://github.com/apache/rocketmq-spring/issues/506#issuecomment-1341953909
> 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)
当前RocketMQ-Spring支持到4.x,会尽快适配5.0
--
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]