summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging/Asynch_Timeout_Handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Messaging/Asynch_Timeout_Handler.h')
-rw-r--r--TAO/tao/Messaging/Asynch_Timeout_Handler.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/TAO/tao/Messaging/Asynch_Timeout_Handler.h b/TAO/tao/Messaging/Asynch_Timeout_Handler.h
deleted file mode 100644
index be230bb6374..00000000000
--- a/TAO/tao/Messaging/Asynch_Timeout_Handler.h
+++ /dev/null
@@ -1,78 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Asynch_Timeout_Handler.h
- *
- * $Id$
- *
- * Timeout Handler for AMI timeouts
- *
- *
- * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
- */
-//=============================================================================
-
-
-#ifndef TAO_ASYNCH_TIMEOUT_HANDLER_H
-#define TAO_ASYNCH_TIMEOUT_HANDLER_H
-
-#include /**/ "ace/pre.h"
-
-#include "messaging_export.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/orbconf.h"
-#include "tao/Basic_Types.h"
-
-#include "ace/Event_Handler.h"
-
-class TAO_Asynch_Reply_Dispatcher_Base;
-class TAO_Transport_Mux_Strategy;
-
-/**
- * @class TAO_Asynch_Timeout_Handler
- *
- * @brief Handler registered with the reactor in case of AMI timeouts.
- */
-class TAO_Messaging_Export TAO_Asynch_Timeout_Handler
- : public ACE_Event_Handler
-{
-public:
- TAO_Asynch_Timeout_Handler (TAO_Asynch_Reply_Dispatcher_Base *rd,
- ACE_Reactor *reactor);
-
- ~TAO_Asynch_Timeout_Handler ();
-
- /// Schedule a timer
- long schedule_timer (TAO_Transport_Mux_Strategy *tms,
- CORBA::ULong request_id,
- const ACE_Time_Value &max_wait_time);
-
- /// Invoked by the reactor on timeout
- virtual int handle_timeout (const ACE_Time_Value &current_time,
- const void *act);
-
- /// Cancel this timer, remove it from the reactor
- virtual void cancel ();
-
-public:
- /// The reply dispatcher expecting the reply
- TAO_Asynch_Reply_Dispatcher_Base *rd_;
-
- /// The transport mux strategy dispatching the reply
- TAO_Transport_Mux_Strategy *tms_;
-
- /// Remember the ID of the request.
- CORBA::ULong request_id_;
-
- /// Our reactor
- ACE_Reactor *reactor_;
-};
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_ASYNCH_TIMEOUT_HANDLER_H */