// $Id$ // // ============================================================================ // // = LIBRARY // TAO/tests/NestedUpcall // // = FILENAME // test.idl // // = DESCRIPTION // A simple test of nested upcalls. // // = AUTHOR // Irfan Pyarali // // ============================================================================ interface client { void ping (in UShort time_to_live); // Decrements . If becomes zero, it // stops. Otherwise, it pings the server. }; interface server { void start (in client c, in UShort time_to_live); // Turns around and starts pinging the client. void ping (in UShort time_to_live); // Decrements . If becomes zero, it // stops. Otherwise, it pings the client. oneway void shutdown (); // Shutdown the server. };