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

#ifndef DDS4CCM_PORTSTATUSLISTNER_IDL3
#define DDS4CCM_PORTSTATUSLISTNER_IDL3

#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