summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3
diff options
context:
space:
mode:
Diffstat (limited to 'modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3')
-rw-r--r--modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl323
1 files changed, 23 insertions, 0 deletions
diff --git a/modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3 b/modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3
new file mode 100644
index 00000000000..b9622ef7457
--- /dev/null
+++ b/modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3
@@ -0,0 +1,23 @@
+// $Id$
+/**
+ * @file dds4ccm_PortStatusListener.idl3
+ *
+ */
+
+#ifndef DDS4CCM_PORTSTATUSLISTNER_IDL3
+#define DDS4CCM_PORTSTATUSLISTNER_IDL3
+
+#include "connectors/dds4ccm/idl/dds4ccm_Base.idl3"
+
+module CCM_DDS
+{
+ interface PortStatusListener {
+ // status that are relevant to the component
+ void on_requested_deadline_missed(in DDS::DataReader the_reader,
+ in DDS::RequestedDeadlineMissedStatus status);
+ void on_sample_lost(in DDS::DataReader the_reader,
+ in DDS::SampleLostStatus status);
+ };
+};
+
+#endif