summaryrefslogtreecommitdiff
path: root/TAO/tao/Wait_Strategy.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/Wait_Strategy.h
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/Wait_Strategy.h')
-rw-r--r--TAO/tao/Wait_Strategy.h108
1 files changed, 0 insertions, 108 deletions
diff --git a/TAO/tao/Wait_Strategy.h b/TAO/tao/Wait_Strategy.h
deleted file mode 100644
index d88c5e258bd..00000000000
--- a/TAO/tao/Wait_Strategy.h
+++ /dev/null
@@ -1,108 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Wait_Strategy.h
- *
- * $Id$
- *
- * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
- */
-//=============================================================================
-
-#ifndef TAO_WAIT_STRATEGY_H
-#define TAO_WAIT_STRATEGY_H
-
-#include /**/ "ace/pre.h"
-
-#include "tao/orbconf.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/TAO_Export.h"
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-class ACE_Time_Value;
-ACE_END_VERSIONED_NAMESPACE_DECL
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-class TAO_ORB_Core;
-class TAO_Transport;
-class TAO_Synch_Reply_Dispatcher;
-
-/**
- * @class TAO_Wait_Strategy
- *
- * @brief Strategy for waiting for the reply.
- *
- */
-class TAO_Export TAO_Wait_Strategy
-{
-
-public:
- /// Constructor.
- TAO_Wait_Strategy (TAO_Transport *transport);
-
- /// Destructor.
- virtual ~TAO_Wait_Strategy (void);
-
- /**
- * The user is going to send a request, prepare any internal
- * variables because the reply may arrive *before* the user calls
- * wait.
- */
- virtual int sending_request (TAO_ORB_Core *orb_core,
- int two_way);
-
- /// Base class virtual method. Wait till the @c reply_received flag is
- /// true or the time expires.
- virtual int wait (ACE_Time_Value *max_wait_time,
- TAO_Synch_Reply_Dispatcher &rd) = 0;
-
- /// Register the handler needs with the reactor provided that it makes
- /// sense for the strategy.
- virtual int register_handler (void) = 0;
-
- /// Returns a value to indicate whether the transport needs to set
- /// the socket on which it is waiting to non-blocking mode or not.
- virtual bool non_blocking (void) const = 0;
-
- /// Flag that indicates whether we can process requests while
- /// waiting for the reply.
- /**
- * This flag is to check whether the thread can process upcalls
- * while waiting for the reply. Some wait strategies, like
- * Wait_On_LF_No_Upcall does not allow the client threads to process
- * requests while waiting for the reply.
- */
- virtual bool can_process_upcalls (void) const = 0;
-
- /// Get method for the flag
- bool is_registered (void) const;
-
- /// Set method for the flag
- void is_registered (bool flag);
-
-protected:
- /// Transport object.
- TAO_Transport *transport_;
-
- /// Flag to indicate whether the service handler that created the
- /// above transport has been registered with the reactor or not. The
- /// default is false.
- bool is_registered_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-
-#if defined (__ACE_INLINE__)
-# include "tao/Wait_Strategy.inl"
-#endif /* __ACE_INLINE__ */
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_WAIT_STRATEGY_H */