diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-10-01 16:32:16 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-10-01 16:32:16 +0200 |
commit | 2063204f644284eee4683faf017a86459baccb03 (patch) | |
tree | c243027f28ca2ede63c78a9037e67f88a5376a5f /java/src/IceInternal/OutgoingAsyncMessageCallback.java | |
parent | ICE-5656 java test/Ice/exception eats all error messages (diff) | |
download | ice-2063204f644284eee4683faf017a86459baccb03.tar.bz2 ice-2063204f644284eee4683faf017a86459baccb03.tar.xz ice-2063204f644284eee4683faf017a86459baccb03.zip |
Lots of minor fixes, few simplifications to OutgoingAsync code
Diffstat (limited to 'java/src/IceInternal/OutgoingAsyncMessageCallback.java')
-rw-r--r-- | java/src/IceInternal/OutgoingAsyncMessageCallback.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/java/src/IceInternal/OutgoingAsyncMessageCallback.java b/java/src/IceInternal/OutgoingAsyncMessageCallback.java index 9c069918933..7b1f5972434 100644 --- a/java/src/IceInternal/OutgoingAsyncMessageCallback.java +++ b/java/src/IceInternal/OutgoingAsyncMessageCallback.java @@ -21,6 +21,9 @@ public interface OutgoingAsyncMessageCallback int send(Ice.ConnectionI conection, boolean compress, boolean response) throws RetryException; + // + // Called by the collocated request handler to invoke the request. + // int invokeCollocated(CollocatedRequestHandler handler); // @@ -44,11 +47,6 @@ public interface OutgoingAsyncMessageCallback void finished(Ice.Exception ex); // - // Called by the retry queue to process retry. - // - void processRetry(boolean destroyed); - - // // Helper to dispatch the cancellation exception. // void dispatchInvocationCancel(Ice.LocalException ex, ThreadPool threadPool, Ice.Connection connection); |