From bd22eec7032ebbd62bc8e59ff2f3f059adc652fc Mon Sep 17 00:00:00 2001 From: Arnaud Simon Date: Mon, 23 Jul 2007 13:40:31 +0000 Subject: 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 --- .../org/apache/qpid/nclient/qpidapi/MessageSender.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'java/common/src') 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. - * + *

* 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; } -- cgit v1.2.1