chwii opened a new issue #224: Is it possible to create consumer that subscribe 
to certain topic on the fly?
URL: https://github.com/apache/rocketmq-spring/issues/224
 
 
   I was able to do so with rocketmq-client like below
   ```java
   public DefaultMQPushConsumer create(Object...args){
   // basic setup omitted
       defaultMQPushConsumer.subscribe(certainTopic, "*");
       defaultMQPushConsumer.registerMessageListener(new 
MessageListenerConcurrently(){
           //custom consumeMessage() logic
       });
   }
   ```
   Is this possible with rocketmq-spring-boot-starter?
   Or is it ok if I stick to rocketmq-client in my Spring Boot project

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to