Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
  /*
   * Creates a JMS connection with the default user identity. The connection is 
   * created in stopped mode. No messages will be delivered until the 
   * Connection.start method is explicitly called.
   * 
   * @return a newly created JMS connection. May return null
   * 
   */
   public Connection createConnection();
	
  /*
   * Creates a JMS connection 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.
   * 
   * @parameter userName - the caller's user name
   * @parameter password - the caller's password
   * 
   * @return a newly created JMS connection. May return null
   */
   public Connection createConnection(String userName, String password);
	
  /*
   * Gets the JMS Connection with the specified user identity, configured in components.xml
   * The connection is returned in start mode.
   * 
   * @return the initially created JMS Connection object. May return null
   * 
   */
   public Connection getConnection();
}

MessageService (JMS) Best Practices

...