Author: ritchiem
Date: Sun Feb 24 19:36:55 2008
New Revision: 630725
URL: http://svn.apache.org/viewvc?rev=630725&view=rev
Log:
QPID-808 : add method to qpid.jms Interface.
Modified:
incubator/qpid/branches/M2.1/java/client/src/main/java/org/apache/qpid/jms/MessageProducer.java
Modified:
incubator/qpid/branches/M2.1/java/client/src/main/java/org/apache/qpid/jms/MessageProducer.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/java/client/src/main/java/org/apache/qpid/jms/MessageProducer.java?rev=630725&r1=630724&r2=630725&view=diff
==============================================================================
---
incubator/qpid/branches/M2.1/java/client/src/main/java/org/apache/qpid/jms/MessageProducer.java
(original)
+++
incubator/qpid/branches/M2.1/java/client/src/main/java/org/apache/qpid/jms/MessageProducer.java
Sun Feb 24 19:36:55 2008
@@ -50,4 +50,8 @@
void send(Destination destination, Message message, int deliveryMode,
int priority, long timeToLive, boolean mandatory, boolean
immediate)
throws JMSException;
+
+ void send(Destination destination, Message message, int deliveryMode, int
priority, long timeToLive,
+ boolean mandatory, boolean immediate, boolean
waitUntilSent) throws JMSException;
+
}