When I add consumer group in configuration, the queue name is always generated with destination name and group name. But our queue name is predefined. We do not need to append the group name. Please provide a way to use specific queue name without any group name. The code for generation of queue name is found below:
private static String getQueueName(String topicName, String groupName,
SolaceCommonProperties properties,
boolean isAnonymous, String anonGroupPostfix) {
String queueName;
if (isAnonymous) {
queueName = topicName + QUEUE_NAME_DELIM + JCSMPFactory.onlyInstance().createUniqueName(anonGroupPostfix);
} else {
queueName = topicName + QUEUE_NAME_DELIM + groupName;
}
return properties.getPrefix() + queueName;
}