Websphere MQ Everyplace

com.ibm.mqe.jms
Class MQeQueueConnectionFactory

java.lang.Object
  |
  +--com.ibm.mqe.jms.MQeConnectionFactory
        |
        +--com.ibm.mqe.jms.MQeQueueConnectionFactory
All Implemented Interfaces:
javax.jms.ConnectionFactory, javax.jms.QueueConnectionFactory

public class MQeQueueConnectionFactory
extends MQeConnectionFactory
implements javax.jms.QueueConnectionFactory

A client uses a QueueConnectionFactory to create a MQeQueueConnection with a JMS Point-to-Point provider.

QueueConnectionFactory can be used to create a QueueConnection, from which specialized queue-related objects can be created. A more general, and recommended, approach is to use the ConnectionFactory object. The QueueConnectionFactory object can be used to support existing code that already uses it.

Note that a MQeQueueConnectionFactory object cannot be stored and retrieved using JNDI - this allows this class to be used on small devices where lookup of JNDI administered objects is either impractical or represents unnecessary overhead. MQeJNDIQueueConnectionFactory extends this class to include support for JNDI.

More information on configuring an MQeQueueConnectionFactory can be found in Chapter 10 of the WebSphere MQ Everyplace Application Programming Guide.

See Also:
ConnectionFactory, QueueConnection

Constructor Summary
MQeQueueConnectionFactory()
          Default constructor.
MQeQueueConnectionFactory(java.lang.String iniFileName)
          Constructor taking a String containing the name of a initialization file.
 
Methods inherited from class com.ibm.mqe.jms.MQeConnectionFactory
createConnection, createConnection, getAuthenticatorClass, getClientID, getDescription, getDUPSOKCount, getIniFileName, getJMSXEnabled, getShutdownDelay, isSQLAllowed, setAuthenticatorClass, setClientID, setDescription, setDUPSOKCount, setIniFileName, setJMSXEnabled, setShutdownDelay, setVerboseStartup, startQueueManager, stopQueueManager
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.jms.QueueConnectionFactory
createQueueConnection, createQueueConnection
 

Constructor Detail

MQeQueueConnectionFactory

public MQeQueueConnectionFactory()
Default constructor. Creates a MQeConnectionFactory with default configuration values.


MQeQueueConnectionFactory

public MQeQueueConnectionFactory(java.lang.String iniFileName)
Constructor taking a String containing the name of a initialization file. This is equivalent to;

MQeQueueConnectionFactory qcf = new MQeQueueConnectionFactory();
qcf.setIniFileName("filename.ini");


Websphere MQ Everyplace