Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_3000_Regression / Test.idl
blobe903027864c93a4ff60c1a3d035c90be405765f9
2 module Test
4 /**
5 * Callback interface.
6 */
7 interface Callback
9 /// Receive the first callback
10 oneway void test_oneway ();
13 /**
14 * Clients connect to this interface passing in a Callback
15 * object.
16 * The service will then invoke all the methods on the
17 * Callback.
20 interface Service
22 /// Invoke the callback object from the server
23 oneway void run_test (in Callback the_callback);
25 void shutdown ();