1 #include
"callback.idl"
5 // Just call a method on the server,
6 long test_method
(in boolean do_callback
);
8 // send the callback object to the server
9 void callback_object
(in Callback cb
);
11 // A safe way to shutdown the server, it is a oneway function so we
12 // will never get a COMM_FAILURE error
13 oneway
void shutdown
();