The MQe JMS Driver implementation. It initialize the JMS Driver and provides
specific way for obtaining JMS QueueConnectionFactory. MQe is limited for
only one QueueConnectionFactory at a JVM so the Driver creates only one
QueueConnectionFactory.
getQueueFactory()
This method retrieves the provider-specific
javax.jms.QueueConnectionFactory object
void
initialize(java.util.Hashtable env)
The initialize(Hastable env) method is passed a java.util.Hashtable
object which stores provider-specific parameters, which can be used for
connecting to a specific instance of the JMS server.
void
terminate()
This is a call-back method used to notify the JMS Driver so it could
clean any used resources.
Methods inherited from class com.ibm.di.systemqueue.driver.IBMMQe
public void initialize(java.util.Hashtable env)
throws java.lang.Exception
The initialize(Hastable env) method is passed a java.util.Hashtable
object which stores provider-specific parameters, which can be used for
connecting to a specific instance of the JMS server. Normally this method
would use the supplied parameters to connect to the JMS server and obtain
a javax.jms.TopicConnectionFactory object and/or a
javax.jms.QueueConnectionFactory object. Then the method would store the
object(s) in member variables so that it/they can be later retrieved via
the getQueueFactory() and/or the getTopicFactory() method.