new ConnectionFactory()
This method is not meant to be used directly.
Creates a ConnectionFactory object that can create new Connection
objects.
Method Summary
- createConnection
- Creates a new Connection.
Method Detail
-
(static) createConnection(serverAddress, jmsConnector, userName, password, listener)
-
Creates a new Connection. If a userName is specified, the connection is created with the specified user identity. The connection is created in stopped mode. No messages will be delivered until the Connection#start method is explicitly called on the Connection object.
Implementation note: due to limitations of JavaScript this method can't return a connection synchronously: the connection will be delivered asynchronously through the ConnectionListener#onConnectionCreated event.Parameters:
Name Type Description serverAddressString the full address of the JMS Extender. jmsConnectorString the name of the JMS Connector. userNameString the optional username to be used for the authentication on the JMS Extender. passwordString the optional password to be used for the authentication on the JMS Extender. listenerConnectionListener the listener that will receive the events related to the connection creation.