summaryrefslogtreecommitdiff
path: root/TAO/tests/Oneways_Invoking_Twoways/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Oneways_Invoking_Twoways/Test.idl')
-rw-r--r--TAO/tests/Oneways_Invoking_Twoways/Test.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/TAO/tests/Oneways_Invoking_Twoways/Test.idl b/TAO/tests/Oneways_Invoking_Twoways/Test.idl
new file mode 100644
index 00000000000..9e23b7b2c9e
--- /dev/null
+++ b/TAO/tests/Oneways_Invoking_Twoways/Test.idl
@@ -0,0 +1,28 @@
+//
+// $Id$
+//
+
+module Test
+{
+ interface Receiver {
+
+ /// Receive a call and send back the number of calls received..
+ long receive_call ();
+
+ /// Get the number of calls that every thread would make...
+ long get_call_count ();
+
+ };
+
+ interface Sender {
+
+ /// Ping message..
+ void ping ();
+
+ /// Number of active objects trying to use this interface
+ oneway void active_objects (in short ao);
+
+ /// Send a ready message
+ oneway void send_ready_message (in Receiver callback);
+ };
+};