summaryrefslogtreecommitdiff
path: root/TAO/tao/Wait_Strategy.cpp
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-11-11 10:47:09 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-11-11 10:47:09 +0000
commitf959acdb7e2f737ec8cfac94b6956109682b8f17 (patch)
tree042dceb21ed0cac65b77d8f2ac8c2c6232810737 /TAO/tao/Wait_Strategy.cpp
parente45953ea0519269689e04fc1b1832413db46369f (diff)
downloadATCD-f959acdb7e2f737ec8cfac94b6956109682b8f17.tar.gz
Sun Nov 6 18:08:29 UTC 2011 Martin Corino <mcorino@remedy.nl>
* tao/CDR.cpp: * tao/Exclusive_TMS.cpp: * tao/GIOP_Message_Base.cpp: * tao/IIOP_Transport.h: * tao/LocateRequest_Invocation.cpp: * tao/Message_Semantics.h: * tao/Messaging/AMH_Response_Handler.cpp: * tao/Messaging/Asynch_Invocation.cpp: * tao/Strategies/COIOP_Transport.h: * tao/Strategies/DIOP_Transport.h: * tao/Strategies/SCIOP_Transport.h: * tao/Strategies/SHMIOP_Transport.h: * tao/Strategies/UIOP_Transport.h: * tao/Synch_Invocation.cpp: * tao/TAO_Server_Request.cpp: * tao/Transport.cpp: * tao/Transport.h: * tao/Wait_On_Leader_Follower.cpp: * tao/Wait_On_Leader_Follower.h: * tao/Wait_On_Read.cpp: * tao/Wait_On_Read.h: * tao/Wait_Strategy.cpp: * tao/Wait_Strategy.h: Changes to make the RW client wait strategy (in combination with the Exclusive transport muxing strategy) play nice with AMI. The essence of the problem of RW not working with AMI was that AMI requires transports to be registered with the reactor (so reply events can be handled) which is what RW prevented for all client transports. The changes provide a means for RW to recognize transports for Async client requests and register these with the reactor just before sending the request and removing them from the reactor again when the request has finished (reply received, timed out or disconnected).
Diffstat (limited to 'TAO/tao/Wait_Strategy.cpp')
-rw-r--r--TAO/tao/Wait_Strategy.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/TAO/tao/Wait_Strategy.cpp b/TAO/tao/Wait_Strategy.cpp
index cff977b9031..30e1707ac62 100644
--- a/TAO/tao/Wait_Strategy.cpp
+++ b/TAO/tao/Wait_Strategy.cpp
@@ -33,12 +33,17 @@ TAO_Wait_Strategy::defer_upcall (ACE_Event_Handler*)
*/
//@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_START
int
-TAO_Wait_Strategy::sending_request (TAO_ORB_Core *, int)
+TAO_Wait_Strategy::sending_request (TAO_ORB_Core *, TAO_Message_Semantics)
{
return 0;
}
//@@ LF_WAIT_STRATEGY_SPL_COMMENT_HOOK_END
+void
+TAO_Wait_Strategy::finished_request ()
+{
+}
+
/*
* Hook to specialize the Wait Strategy
*/