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 | e2a61096fc572281b6cd89f7ef612532461a7fdf (patch) | |
| tree | f8ab11a80af3b6e710e0e1d294625f8f13c5c4f2 /java/client/src | |
| parent | 47ae817a3ba9fa14657808b6319bafb62d7c66ba (diff) | |
| download | qpid-python-e2a61096fc572281b6cd89f7ef612532461a7fdf.tar.gz | |
changed messageFlush to return an int
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@563417 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client/src')
| -rw-r--r-- | java/client/src/main/java/org/apache/qpidity/client/Session.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/java/client/src/main/java/org/apache/qpidity/client/Session.java b/java/client/src/main/java/org/apache/qpidity/client/Session.java index eddee6cba1..4903991d7d 100644 --- a/java/client/src/main/java/org/apache/qpidity/client/Session.java +++ b/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.
|
