ShannonDing opened a new issue #3561: URL: https://github.com/apache/rocketmq/issues/3561
see: [PushConsumerWithNamespace](https://github.com/apache/rocketmq/blob/master/example/src/main/java/org/apache/rocketmq/example/namespace/PushConsumerWithNamespace.java) it always return RECONSUME_LATER in the listener. ``` defaultMQPushConsumer.registerMessageListener((MessageListenerConcurrently)(msgs, context) -> { msgs.stream().forEach((msg) -> { System.out.printf("Msg topic is:%s, MsgId is:%s, reconsumeTimes is:%s%n", msg.getTopic() , msg.getMsgId(), msg.getReconsumeTimes()); }); return ConsumeConcurrentlyStatus.RECONSUME_LATER; }); ``` -- 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]
