List of usage examples for javax.jms JMSConnectionFactory subclass-usage
From source file org.wso2.carbon.inbound.endpoint.protocol.jms.factory.CachedJMSConnectionFactory.java
public class CachedJMSConnectionFactory extends JMSConnectionFactory { private static final Log logger = LogFactory.getLog(CachedJMSConnectionFactory.class); private int cacheLevel = 0; private Connection cachedConnection = null;
From source file org.wso2.carbon.transport.jms.factory.PooledJMSConnectionFactory.java
/** * JMS Connection Factory which pools connections for better performance. */ public class PooledJMSConnectionFactory extends JMSConnectionFactory implements KeyedPooledObjectFactory<PooledConnectionKey, Connection> {