summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Reliable_Oneways/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Reliable_Oneways/Test.idl')
-rw-r--r--ACE/TAO/tests/Reliable_Oneways/Test.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Reliable_Oneways/Test.idl b/ACE/TAO/tests/Reliable_Oneways/Test.idl
new file mode 100644
index 00000000000..a083bd6412c
--- /dev/null
+++ b/ACE/TAO/tests/Reliable_Oneways/Test.idl
@@ -0,0 +1,29 @@
+//
+// $Id$
+//
+
+module Test
+{
+ interface Shutdown_Helper;
+
+ /// An interface to send oneway messages
+ interface Oneway_Receiver
+ {
+ /// The server raises a system exception, only the
+ /// SYNC_WITH_TARGET can detect that.
+ oneway void raise_no_permission ();
+
+ /// Destroy the object
+ oneway void destroy ();
+
+ /// Return a helper interface
+ Shutdown_Helper get_shutdown_helper ();
+ };
+
+ /// A simple interface to shutdown the server
+ interface Shutdown_Helper
+ {
+ /// Shutdown the server
+ void shutdown ();
+ };
+};