summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_AMI/ami_test.idl
blob: 990a202cda57b6c09194d61878967d8eaa1a6d29 (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

//=============================================================================
/**
 *  @file    ami_test.idl
 *
 *  $Id$
 *
 *  IDL description of the AMI Test interface
 *
 *
 *  @author Johnny Willemsen  <jwillemsen@remedy.nl>
 */

module A
  {
    /// The message type, just used to send a lot of data on each
    /// request
    typedef sequence<octet> Payload;

    interface AMI_Test
      {
        long foo (out long out_l,
                  in long in_l,
                  in string in_str,
                  in Payload the_payload);

        oneway void shutdown ();
      };
  };