Merge pull request #1710 from likema/cfg-assign-not-null-str
[ACE_TAO.git] / TAO / orbsvcs / tests / Security / BiDirectional / test.idl
blob46833825deac96fed5f99947e7c8b7cbd66f5f36
2 interface Callback
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 ();