summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Throughput/Sender/Throughput_Sender.idl
blob: 9cb773135d9828288528cb64ca0812cd26c73ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * @author Marijke Hengstmengel (mhengstmengel@remedy.nl)
 */

#ifndef DDS_THROUGHPUT_SENDER_IDL
#define DDS_THROUGHPUT_SENDER_IDL

#include "Connector/Throughput_Connector.idl"
#include "SecConnector/Throughput_Sec_Connector.idl"

module Throughput
{
  component Sender
  {
    port ThroughputTestConn::DDS_Write info_write;
    port ThroughputCommandConn::DDS_Write command_write;

    provides CCM_DDS::ConnectorStatusListener connector_status;

    attribute unsigned long start_load;
    attribute unsigned long incr_load;
    attribute unsigned long long max_load;
    attribute unsigned short recover_time;
    attribute unsigned short datalen; //minimal 24
    attribute unsigned short number_of_sub; //number of subscribers
  };
};

#endif