diff options
| author | Arnaud Simon <arnaudsimon@apache.org> | 2007-08-07 08:01:06 +0000 |
|---|---|---|
| committer | Arnaud Simon <arnaudsimon@apache.org> | 2007-08-07 08:01:06 +0000 |
| commit | a5c7c0db116ccb682880326923be52b39d2cb491 (patch) | |
| tree | dea0c00c17d8cc561bff7a6f10da43851b2725f0 /qpid/java/client | |
| parent | 1eb8e98b6c2a06691fc029d3583e6140f0a3f173 (diff) | |
| download | qpid-python-a5c7c0db116ccb682880326923be52b39d2cb491.tar.gz | |
changed messageFlush to return an int
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@563417 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client')
| -rw-r--r-- | qpid/java/client/src/main/java/org/apache/qpidity/client/Session.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/qpid/java/client/src/main/java/org/apache/qpidity/client/Session.java b/qpid/java/client/src/main/java/org/apache/qpidity/client/Session.java index eddee6cba1..4903991d7d 100644 --- a/qpid/java/client/src/main/java/org/apache/qpidity/client/Session.java +++ b/qpid/java/client/src/main/java/org/apache/qpidity/client/Session.java @@ -16,11 +16,15 @@ * specific language governing permissions and limitations
* under the License.
*/
-package org.apache.qpidity;
+package org.apache.qpidity.client;
import java.util.Map;
import org.apache.qpidity.api.Message;
+import org.apache.qpidity.QpidException;
+import org.apache.qpidity.Header;
+import org.apache.qpidity.Option;
+import org.apache.qpidity.Range;
/**
* <p>A session is associated with a connection.
@@ -44,7 +48,7 @@ public interface Session /**
* Close this session and any associated resources.
*
- * @throws QpidException If the communication layer fails to close this session or if an internal error happens
+ * @throws org.apache.qpidity.QpidException If the communication layer fails to close this session or if an internal error happens
* when closing this session resources. .
*/
public void close() throws QpidException;
@@ -181,7 +185,7 @@ public interface Session * <li> pre-acquire (1): the message is acquired when the transfer starts
* </ul>
* @param listener The listener for this destination. When big message are transfered then
- * it is recommended to use a {@link MessagePartListener}.
+ * it is recommended to use a {@link org.apache.qpidity.client.MessagePartListener}.
* @param options Set of Options.
* @param filter A set of filters for the subscription. The syntax and semantics of these filters depends
* on the providers implementation.
|
