summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h
new file mode 100644
index 00000000000..5267546de17
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Gateway_Sched.h
@@ -0,0 +1,59 @@
+// -*- C++ -*-
+/**
+ * @file EC_Gateway_Sched.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan (coryan@cs.wustl.edu)
+ *
+ * Based on previous work by Tim Harrison (harrison@cs.wustl.edu) and
+ * other members of the DOC group. More details can be found in:
+ *
+ * http://doc.ece.uci.edu/~coryan/EC/index.html
+ *
+ *
+ */
+
+#ifndef TAO_EC_GATEWAY_SCHED_H
+#define TAO_EC_GATEWAY_SCHED_H
+#include /**/ "ace/pre.h"
+
+#include "orbsvcs/Event/EC_Gateway_IIOP.h"
+#include "orbsvcs/RtecSchedulerC.h"
+#include "orbsvcs/Event/sched_event_export.h"
+
+// ****************************************************************
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/**
+ * @class TAO_EC_Gateway_Sched
+ *
+ * @brief Extend the EC_Gateway_IIOP interface to support scheduling.
+ */
+class TAO_RTSchedEvent_Export TAO_EC_Gateway_Sched : public TAO_EC_Gateway_IIOP
+{
+public:
+ TAO_EC_Gateway_Sched (void);
+ ~TAO_EC_Gateway_Sched (void);
+
+ /**
+ * To do its job this class requires to know the local and remote
+ * ECs it will connect to; furthermore it also requires to build
+ * RT_Infos for the local and remote schedulers.
+ * @todo part of the RT_Info is hardcoded, we need to make it
+ * parametric.
+ */
+ void init (RtecEventChannelAdmin::EventChannel_ptr supplier_ec,
+ RtecEventChannelAdmin::EventChannel_ptr consumer_ec,
+ RtecScheduler::Scheduler_ptr supplier_sched,
+ RtecScheduler::Scheduler_ptr consumer_sched,
+ const char* consumer_name,
+ const char* supplier_name
+ ACE_ENV_ARG_DECL);
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+#endif /* ACE_EC_GATEWAY_SCHED_H */