added better javadoc

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@415293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-06-19 11:12:20 +00:00
parent b3748b4fd8
commit 87dcdce239
1 changed files with 10 additions and 1 deletions

View File

@ -1652,7 +1652,16 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
}
/**
* Creates an output stream allowing full control over the delivery mode, the priority and time to live of the messaages and the properties added to messages on the stream.
* Creates an output stream allowing full control over the delivery mode,
* the priority and time to live of the messages and the properties added to
* messages on the stream.
*
* @param streamProperties
* defines a map of key-value pairs where the keys are strings
* and the values are primitive values (numbers and strings)
* which are appended to the messages similarly to using the
* {@link javax.jms.Message#setObjectProperty(String, Object)}
* method
*/
public OutputStream createOutputStream(Destination dest, Map streamProperties, int deliveryMode, int priority, long timeToLive) throws JMSException {
checkClosedOrFailed();