Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Shared Durable Consumers #285

Open
houtansadafi-gopuff opened this issue Oct 14, 2022 · 0 comments
Open

Support Shared Durable Consumers #285

houtansadafi-gopuff opened this issue Oct 14, 2022 · 0 comments

Comments

@houtansadafi-gopuff
Copy link

Feature description

Looking through the micronaut-jms code it seems that all topics/queue listeners use the createConsumer JMS API to create a JMSConsumer, and there is no ability to configure it to use any other API such as shared durable consumer.

In order to integrate with Azure Service bus topics, we need to create a shared durable subscriber on the topic.

e.g

Topic topic = jmsContext.createTopic("myTopic");
JMSConsumer sharedDurableConsumer = jmsContext.createSharedDurableConsumer(topic, "mySubscription");

It would be great to support different consumer types, i.e shared durable, unshared durable etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant