Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Big_AMI / ami_test.idl
blobf0adec4f6c468fa74f8e138b79fd52a798fa54e6
2 //=============================================================================
3 /**
4 * @file ami_test.idl
6 * IDL description of the AMI Test interface
9 * @author Johnny Willemsen <jwillemsen@remedy.nl>
12 module A
14 /// The message type, just used to send a lot of data on each
15 /// request
16 typedef sequence<octet> Payload;
18 interface AMI_Test
20 long foo (out long out_l,
21 in long in_l,
22 in string in_str,
23 in Payload the_payload);
25 oneway void shutdown ();