summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2007-07-23 13:40:31 +0000
committerArnaud Simon <arnaudsimon@apache.org>2007-07-23 13:40:31 +0000
commitbd22eec7032ebbd62bc8e59ff2f3f059adc652fc (patch)
treeac570943ec1ed03228fc170182b021f3b3bed51b
parent1795f6cf2421bf42a21404db26f42066c82a36b9 (diff)
downloadqpid-python-bd22eec7032ebbd62bc8e59ff2f3f059adc652fc.tar.gz
Removed the inline option (this was a 0.9 parameter)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@558724 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java b/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
index cbe1443798..545c06e67e 100644
--- a/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
+++ b/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java
@@ -22,7 +22,7 @@ import org.apache.qpid.nclient.exception.QpidException;
/**
* A sender is used to send message to its queue.
- *
+ * <p/>
* Created by Arnaud Simon
* Date: 22-Jul-2007
* Time: 09:41:58
@@ -34,11 +34,11 @@ public interface MessageSender extends Resource
* Sends a message to this sender queue.
*
* @param message The message to be sent
- * @param inline //TODO
- * @throws QpidException If the sender fails to send the message due to some error.
- * @throws IllegalStateException If this sender was closed or its session suspended.
+ * @throws QpidException If the sender fails to send the message due to some error.
+ * @throws IllegalStateException If this sender was closed or its session suspended.
*/
- public void send(Message message, boolean inline) throws
- QpidException,
- IllegalStateException;
+ public void send(Message message)
+ throws
+ QpidException,
+ IllegalStateException;
}