summaryrefslogtreecommitdiff
path: root/TAO/tao/RTPortableServer/RT_Collocation_Resolver.h
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-09-13 00:32:20 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-09-13 00:32:20 +0000
commitbb581ca34145d9f88c8d95ee2a1a885d2572f1f6 (patch)
tree714c1845a75010173147e153a132fc1589bfc1ce /TAO/tao/RTPortableServer/RT_Collocation_Resolver.h
parent0b10bc456cf2ecca67f9e97b225835c5a7ac5599 (diff)
downloadATCD-bb581ca34145d9f88c8d95ee2a1a885d2572f1f6.tar.gz
New branch Thread_Pool_stage_3 (very close to x.1.20 release)
Diffstat (limited to 'TAO/tao/RTPortableServer/RT_Collocation_Resolver.h')
-rw-r--r--TAO/tao/RTPortableServer/RT_Collocation_Resolver.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/TAO/tao/RTPortableServer/RT_Collocation_Resolver.h b/TAO/tao/RTPortableServer/RT_Collocation_Resolver.h
new file mode 100644
index 00000000000..059160e17ec
--- /dev/null
+++ b/TAO/tao/RTPortableServer/RT_Collocation_Resolver.h
@@ -0,0 +1,53 @@
+//=============================================================================
+/**
+ * @file RT_Collocation_Resolver.h
+ *
+ * $Id$
+ *
+ * @author Irfan Pyarali
+ */
+// ===================================================================
+
+#ifndef TAO_RT_COLLOCATION_RESOLVER_H
+#define TAO_RT_COLLOCATION_RESOLVER_H
+
+#include "ace/pre.h"
+#include "tao/orbconf.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/RTPortableServer/rtportableserver_export.h"
+#include "tao/Collocation_Resolver.h"
+#include "ace/Service_Config.h"
+
+/**
+ * @class TAO_RT_Collocation_Resolver
+ *
+ * @brief This class helps decide on collocation among the maze of
+ * thread pools and lanes.
+ *
+ * \nosubgrouping
+ *
+ **/
+class TAO_RTPortableServer_Export TAO_RT_Collocation_Resolver :
+ public TAO_Collocation_Resolver
+{
+public:
+
+ /// Is <object> collocated?
+ virtual CORBA::Boolean is_collocated (CORBA::Object_ptr object,
+ CORBA::Environment &ACE_TRY_ENV) const;
+};
+
+ACE_STATIC_SVC_DECLARE_EXPORT (TAO_RTPortableServer, TAO_RT_Collocation_Resolver)
+ACE_FACTORY_DECLARE (TAO_RTPortableServer, TAO_RT_Collocation_Resolver)
+
+#if defined (__ACE_INLINE__)
+# include "tao/RTPortableServer/RT_Collocation_Resolver.i"
+#endif /* __ACE_INLINE__ */
+
+#include "ace/post.h"
+
+#endif /* TAO_RT_COLLOCATION_RESOLVER_H */