Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3743_Regression / Test.idl
blob1d0894e65caa3b927a2cea9d15e73f4975be156b
2 #include <orb.idl>
4 #include <orbsvcs/CosEventChannelAdmin.idl>
5 #include <orbsvcs/CosTypedEventChannelAdmin.idl>
7 /// Put the interfaces in a module, to avoid global namespace pollution
8 module Test
10 /// for big files
11 typedef sequence<octet> Octet_Seq;
13 /// A very simple interface
14 interface Hello
16 /// Return a simple string
17 string get_string (in string mystring);
19 /// Return binary info
20 Octet_Seq get_big_reply ();
22 ///recieve a large number of bytes
23 void big_request (in Octet_Seq octet_in);
25 /// A method to shutdown the ORB
26 /**
27 * This method is used to simplify the test shutdown process
29 oneway void shutdown ();