summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/Outgoing.java
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2008-01-03 10:39:11 +0100
committerBenoit Foucher <benoit@zeroc.com>2008-01-03 10:39:11 +0100
commit49d8b6063d63427e97a1d9ab942091b4b06fc560 (patch)
tree86d4b73712e17c8fa75985d6419d08e0d3a5d787 /java/src/IceInternal/Outgoing.java
parentMade call to Bind() generic so it works with IPv6. (diff)
downloadice-49d8b6063d63427e97a1d9ab942091b4b06fc560.tar.bz2
ice-49d8b6063d63427e97a1d9ab942091b4b06fc560.tar.xz
ice-49d8b6063d63427e97a1d9ab942091b4b06fc560.zip
- Fixed bug 2363, 2623, 2500
- Added missing SignalPolicy.java - Removed foreground send support in Ice for C++ & Java
Diffstat (limited to 'java/src/IceInternal/Outgoing.java')
-rw-r--r--java/src/IceInternal/Outgoing.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/java/src/IceInternal/Outgoing.java b/java/src/IceInternal/Outgoing.java
index 4f578b37adb..d5288310ebe 100644
--- a/java/src/IceInternal/Outgoing.java
+++ b/java/src/IceInternal/Outgoing.java
@@ -155,7 +155,10 @@ public final class Outgoing implements OutgoingMessageCallback
// be repeated.
//
// An ObjectNotExistException can always be retried as
- // well without violating "at-most-once".
+ // well without violating "at-most-once" (see the
+ // implementation of the checkRetryAfterException
+ // method of the ProxyFactory class for the reasons
+ // why it can be useful).
//
if(!_sent ||
_exception instanceof Ice.CloseConnectionException ||
@@ -165,8 +168,8 @@ public final class Outgoing implements OutgoingMessageCallback
}
//
- // Throw the exception wrapped in a LocalExceptionWrapper, to
- // indicate that the request cannot be resent without
+ // Throw the exception wrapped in a LocalExceptionWrapper,
+ // to indicate that the request cannot be resent without
// potentially violating the "at-most-once" principle.
//
throw new LocalExceptionWrapper(_exception, false);