Github user michaelandrepearce commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1778#discussion_r162105254
--- Diff:
artemis-jms-server/src/main/java/org/apache/activemq/artemis/jms/server/JMSServerManager.java
---
@@ -60,6 +60,24 @@ boolean createQueue(boolean storeConfig,
boolean durable,
String... bindings) throws Exception;
+ /**
+ * Creates a JMS Queue.
+ *
+ * @param queueName The name of the core queue to create
+ * @param jmsQueueName the name of this JMS queue
+ * @param selectorString
+ * @param durable
+ * @return true if the queue is created or if it existed and was added
to
+ * the Binding Registry
+ * @throws Exception if problems were encountered creating the queue.
+ */
+ boolean createQueue(boolean storeConfig,
--- End diff --
Fair enough. Thanks for the explination.
---