diff options
Diffstat (limited to 'java/src/IceInternal/OutgoingAsyncMessageCallback.java')
-rw-r--r-- | java/src/IceInternal/OutgoingAsyncMessageCallback.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/src/IceInternal/OutgoingAsyncMessageCallback.java b/java/src/IceInternal/OutgoingAsyncMessageCallback.java index bd710644a9e..8d830987428 100644 --- a/java/src/IceInternal/OutgoingAsyncMessageCallback.java +++ b/java/src/IceInternal/OutgoingAsyncMessageCallback.java @@ -19,7 +19,9 @@ public interface OutgoingAsyncMessageCallback // Called by the request handler to send the request over the connection. // int __send(Ice.ConnectionI conection, boolean compress, boolean response) - throws LocalExceptionWrapper; + throws RetryException; + + int __invokeCollocated(CollocatedRequestHandler handler); // // Called by the connection when the message is confirmed sent. The connection is locked @@ -40,5 +42,5 @@ public interface OutgoingAsyncMessageCallback // not the message was possibly sent (this is useful for retry to figure out whether // or not the request can't be retried without breaking at-most-once semantics.) // - public abstract void __finished(Ice.LocalException ex, boolean sent); + public abstract void __finished(Ice.Exception ex, boolean sent); } |