summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/performance-tests/Throughput/Sender/Throughput_Sender.idl
blob: 53e2a5f83fd98c517d5cf060b83642aa031fd562 (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
30
31
32
33
34
// $Id$

/**
 * @file
 * @author Marijke Hengstmengel <mhengstmengel@remedy.nl>
 *
 * by-hand idl3 translation of sender components.
 */

#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