Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / NestedUpcall / Simple / test.idl
blob53d0e5d9ea7a93ea4d474262c9799b28b7aa470e
1 //=============================================================================
2 /**
3 * @file test.idl
5 * A simple test of nested upcalls.
8 * @author Irfan Pyarali
9 */
10 //=============================================================================
13 interface client
15 void ping (in unsigned short time_to_live);
16 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
17 // stops. Otherwise, it pings the server.
20 interface server
22 void start (in client c,
23 in unsigned short time_to_live);
24 // Turns around and starts pinging the client.
26 void ping (in unsigned short time_to_live);
27 // Decrements <time_to_live>. If <time_to_live> becomes zero, it
28 // stops. Otherwise, it pings the client.
30 oneway void shutdown ();
31 // Shutdown the server.