diff options
| author | Arnaud Simon <arnaudsimon@apache.org> | 2007-07-23 13:40:31 +0000 |
|---|---|---|
| committer | Arnaud Simon <arnaudsimon@apache.org> | 2007-07-23 13:40:31 +0000 |
| commit | be5ce35e4a9fb4a5a358522c23855da11116829c (patch) | |
| tree | c3540dd9ff3b219843991cc2df15c2d0c7ac3827 /qpid/java/common | |
| parent | a8dbb372533ee167dcec5a47510fe302d53164ca (diff) | |
| download | qpid-python-be5ce35e4a9fb4a5a358522c23855da11116829c.tar.gz | |
Removed the inline option (this was a 0.9 parameter)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@558724 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common')
| -rw-r--r-- | qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java b/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java index cbe1443798..545c06e67e 100644 --- a/qpid/java/common/src/main/java/org/apache/qpid/nclient/qpidapi/MessageSender.java +++ b/qpid/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; } |
