4 /// A safe way to shutdown the client, using either clean shutdowns
5 /// or "catastrophic failures".
6 oneway
void shutdown
();
8 /// A simple remote call
9 void callback_method
();
12 interface Simple_Server
14 /// Just call a method on the server,
15 long test_method
(in boolean do_callback
);
17 /// send the callback object to the server
18 void callback_object
(in Callback cb
);
20 /// A safe way to shutdown the server, it is a oneway function so we
21 /// will never get a COMM_FAILURE error
22 oneway
void shutdown
();