Name

QueueConnectionFactory

Synopsis

A QueueConnectionFactory is exported by point-to-point providers to allow clients to create QueueConnections to the provider. The default createQueueConnection() method is used to create a connection under the default user identity of the client JVM, and the other accepts a name and password that is used to authenticate the connection request.

                  Returned By
public interface QueueConnectionFactory extends javax.jms.ConnectionFactory {
// Public Instance Methods
   public abstract QueueConnection createQueueConnection(
        ) throws JMSException;  
   public abstract QueueConnection createQueueConnection(
        String userName, 
        String password) throws JMSException;  
}

Implementations

XAQueueConnectionFactory

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.