You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/11/15 10:06:29 UTC

[GitHub] [pulsar] frejonb opened a new issue #5672: [C++ client] Deadletter queue functionality

frejonb opened a new issue #5672: [C++ client] Deadletter queue functionality
URL: https://github.com/apache/pulsar/issues/5672
 
 
   Is anyone working on porting DLQ from the Java client to Cpp https://github.com/apache/pulsar/pull/2508? I'd like to help/contribute.
   
   I'm thinking on the following API
   ```c++
   Client client("pulsar://localhost:6650");
   
   Consumer consumer;
   ConsumerConfiguration config;
   config.setMaxRedeliverCount(10);
   config.deadLetterTopic("my-dlq-topic");
   
   Result result = client.subscribe("persistent://prop/r1/ns1/my-topic", "consumer-1", config, consumer);
   ```
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services