Monitoring of JMS connection pool |
There exists two methods on com.atomikos.jdbc.AbstractDataSourceBean for this purpose: public int poolAvailableSize() { return connectionPool.availableSize(); }
public int poolTotalSize() { return connectionPool.totalSize(); }
why are they not available for com.atomikos.jms.AtomikosConnectionFactoryBean.
Or does exists a better method for monitoring?
Greets, Benjamin
Benjamin Graf
Monday, June 17, 2013
Hi,
Thanks. At this moment there is no better alternative although more JMX controls is high on the backlog for our commercial product. Once that is there, the open source core will probably also have this for JMS.
HTH
Guy Pardon
Tuesday, June 18, 2013
Hi,
maybe extract those methods to individual Java interfaces. I actually have a lot of workarounds for OSGi environments because of that. :-)
Regards Benjamin
Benjamin Graf
Wednesday, June 19, 2013
Noted - thanks!
Guy Pardon
Wednesday, June 19, 2013
|