Re: ActiveMQ flow control and JMS

2009-04-03 Thread Andreas Gies
Hi, sure thing: typically these plugins implement org.apache.activemq.broker.Broker. There is a class BrokerPluginSupport that can serve as the base class for your own plugins. If you are using Eclipse I would suggest to look at the class hierarchy of those classes and have a look at some of

Re: ActiveMQ flow control and JMS

2009-04-03 Thread ffrenchm
Hello, Andreas Gies-3 wrote: > > > Hi there, > > as for the first question. AFAIK the methods you mention just send > advisory messages > that you could monitor for the moment. I could imagine you could use > the method hooks for implementing > a broker plugin that automatically disconnec

Re: ActiveMQ flow control and JMS

2009-04-02 Thread Andreas Gies
Hi there, as for the first question. AFAIK the methods you mention just send advisory messages that you could monitor for the moment. I could imagine you could use the method hooks for implementing a broker plugin that automatically disconnects slow consumers for example. As for the secon