Using Alpakka, we can create a non-durable subscriber for any topic using the below code:
Source<String, NotUsed> jmsTopicSource = JmsSource
.textSource(JmsSourceSettings
.create(connectionFactory)
.withTopic("topic")
.withBufferSize(10)
);
Does anyone have an idea how to make this topic subscriber durable?