Re: ActiveMQ v5 plugin migration to Artemis

2020-02-14 Thread Justin Bertram
What protocol are your clients going to be using? Justin On Fri, Feb 14, 2020 at 3:28 PM David Martin wrote: > Thanks Chris - > > Unfortunately what I need to override (queue name and filter) is read only: > > > https://github.com/apache/activemq-artemis/blob/master/artemis-server/src/main/jav

Re: ActiveMQ v5 plugin migration to Artemis

2020-02-14 Thread David Martin
Thanks Chris - Unfortunately what I need to override (queue name and filter) is read only: https://github.com/apache/activemq-artemis/blob/master/artemis-server/src/main/java/org/apache/activemq/artemis/core/server/ConsumerInfo.java Wondering whether an interceptor is what I need? Unless I'm mis

Re: ActiveMQ v5 plugin migration to Artemis

2020-02-14 Thread Christopher Shannon
Take a look at the plugin API for Artemis: https://activemq.apache.org/components/artemis/documentation/latest/broker-plugins.html Specifically you can implement your own ActiveMQServerPlugin (which extends many other plugin interfaces) and has a ton of hooks into the broker to do what you need.