summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/RequestHandler.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-11-25 15:05:41 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-11-25 15:05:41 +0100
commit2fca2c1309c4991b21ff956709068122f19eef4a (patch)
treeb90e6fe1450508f5ce2962e21627a4535414e1a6 /cpp/src/Ice/RequestHandler.h
parentUpdate depends for SQL directories (diff)
downloadice-2fca2c1309c4991b21ff956709068122f19eef4a.tar.bz2
ice-2fca2c1309c4991b21ff956709068122f19eef4a.tar.xz
ice-2fca2c1309c4991b21ff956709068122f19eef4a.zip
- Cleaned up test/Ice/operations test
- Added test/Ice/ami test - sent callback is now always called
Diffstat (limited to 'cpp/src/Ice/RequestHandler.h')
-rw-r--r--cpp/src/Ice/RequestHandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/RequestHandler.h b/cpp/src/Ice/RequestHandler.h
index 486445067d6..c1fb56a3a3d 100644
--- a/cpp/src/Ice/RequestHandler.h
+++ b/cpp/src/Ice/RequestHandler.h
@@ -35,10 +35,10 @@ public:
virtual void abortBatchRequest() = 0;
virtual Ice::ConnectionI* sendRequest(Outgoing*) = 0;
- virtual bool sendAsyncRequest(const OutgoingAsyncPtr&) = 0;
+ virtual AsyncStatus sendAsyncRequest(const OutgoingAsyncPtr&) = 0;
virtual bool flushBatchRequests(BatchOutgoing*) = 0;
- virtual bool flushAsyncBatchRequests(const BatchOutgoingAsyncPtr&) = 0;
+ virtual AsyncStatus flushAsyncBatchRequests(const BatchOutgoingAsyncPtr&) = 0;
const ReferencePtr& getReference() const { return _reference; } // Inlined for performances.