summaryrefslogtreecommitdiff
path: root/modules/CIAO/connectors/dds4ccm/idl/dds4ccm_PortStatusListener.idl3
blob: e7c7c302b1a260d01dd82f0c459ce8da371dc094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @file dds4CCM_PortStatusListner.idl3p
 *
 */

#ifndef DDS4CCM_PORTSTATUSLISTNER_IDL3P
#define DDS4CCM_PORTSTATUSLISTNER_IDL3P

#include "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