blob: ddb989750a2d2eb2d8414f149ae7fcbbe3f8c9b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
interface Callback
{
// A safe way to shutdown the client, using either clean shutdowns
// or "catastrophic failures".
oneway void shutdown();
// A simple remote call
void callback_method();
};
|