I wonder if is it possible to use the shared consumer with the JMS connector of Quarkus. I would like to make something like this:
final TopicConnection topicConnection = factory.createTopicConnection();
final TopicSession topicSession = topicConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
final MessageConsumer subscriber = topicSession.createSharedConsumer(new MQTopic("mytopic"), "mysubscription");
How to set the subscriber?
May be is it worth to add a 'shared' property in the connector?