Use =default for skeleton copy constructor
[ACE_TAO.git] / TAO / tests / Dynamic_TP / ORB_ThreadPool / Test.idl
blobab80e211ea411e5e0a9d75f4764a7d4fa643570f
2 /// Put the interfaces in a module, to avoid global namespace pollution
3 module Test
5 /// A very simple interface
6 interface Sleeper
8 void delay (in short seconds);
10 /// A method to shutdown the ORB
11 /**
12 * This method is used to simplify the test shutdown process
14 oneway void shutdown ();
17 /// The client calls on middle which will then perform an upcall to sleeper
18 interface Middle
20 void call_delay (in short seconds);
22 oneway void shutdown ();