List of usage examples for javax.jms ConnectionFactory interface-usage
From source file gov.nih.nci.cabig.caaers.esb.client.impl.CaaersConnectionFactory.java
/** * * @author Rhett Sutphin */ public class CaaersConnectionFactory implements ConnectionFactory {
From source file fr.xebia.management.jms.SpringManagedConnectionFactory.java
/** * * @author <a href="mailto:cyrille@cyrilleleclerc.com">Cyrille Le Clerc</a> */ public class SpringManagedConnectionFactory extends ManagedConnectionFactory implements ConnectionFactory, ManagedConnectionFactoryMBean, SelfNaming, BeanNameAware {
From source file org.mule.transport.jms.xa.ConnectionFactoryWrapper.java
public class ConnectionFactoryWrapper implements ConnectionFactory, QueueConnectionFactory, TopicConnectionFactory { /** * logger used by this class */ protected static final transient Log logger = LogFactory.getLog(ConnectionFactoryWrapper.class);
From source file org.fusesource.jms.pool.PooledConnectionFactory.java
/**
* A JMS provider which pools Connection, Session and MessageProducer instances
* so it can be used with tools like <a href="http://camel.apache.org/activemq.html">Camel</a> and Spring's <a
* href="http://activemq.apache.org/spring-support.html">JmsTemplate and MessagListenerContainer</a>.
* Connections, sessions and producers are returned to a pool after use so that they can be reused later
* without having to undergo the cost of creating them again.
From source file com.mirth.connect.connectors.jms.xa.ConnectionFactoryWrapper.java
/** * @author Guillaume Nodet * @version $Revision: 1.4 $ */ public class ConnectionFactoryWrapper implements ConnectionFactory, QueueConnectionFactory, TopicConnectionFactory {
From source file org.apache.karaf.jms.pool.internal.PooledConnectionFactory.java
/**
* A JMS provider which pools Connection, Session and MessageProducer instances
* so it can be used with tools like <a href="http://camel.apache.org/activemq.html">Camel</a> and Spring's
* <a href="http://activemq.apache.org/spring-support.html">JmsTemplate and MessagListenerContainer</a>.
* Connections, sessions and producers are returned to a pool after use so that they can be reused later
* without having to undergo the cost of creating them again.
From source file org.apache.aries.transaction.jms.PooledConnectionFactory.java
/**
* A JMS provider which pools Connection, Session and MessageProducer instances
* so it can be used with tools like <a href="http://camel.apache.org/activemq.html">Camel</a> and Spring's
* <a href="http://activemq.apache.org/spring-support.html">JmsTemplate and MessagListenerContainer</a>.
* Connections, sessions and producers are returned to a pool after use so that they can be reused later
* without having to undergo the cost of creating them again.
From source file org.wso2.carbon.inbound.endpoint.protocol.jms.factory.JMSConnectionFactory.java
/**
* use of factory server down and up jms spec transport.jms.MessageSelector
* isDurable
*
* */
From source file org.apache.activemq.jms.pool.PooledConnectionFactory.java
/**
* A JMS provider which pools Connection, Session and MessageProducer instances
* so it can be used with tools like <a href="http://camel.apache.org/activemq.html">Camel</a> and Spring's
* <a href="http://activemq.apache.org/spring-support.html">JmsTemplate and MessagListenerContainer</a>.
* Connections, sessions and producers are returned to a pool after use so that they can be reused later
* without having to undergo the cost of creating them again.
From source file org.springframework.jms.connection.SingleConnectionFactory.java
/**
* A JMS ConnectionFactory adapter that returns the same Connection
* from all {@link #createConnection()} calls, and ignores calls to
* {@link javax.jms.Connection#close()}. According to the JMS Connection
* model, this is perfectly thread-safe (in contrast to e.g. JDBC). The
* shared Connection can be automatically recovered in case of an Exception.