summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Request_Muxing/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Request_Muxing/Test.idl')
-rw-r--r--TAO/tests/Big_Request_Muxing/Test.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/TAO/tests/Big_Request_Muxing/Test.idl b/TAO/tests/Big_Request_Muxing/Test.idl
new file mode 100644
index 00000000000..21068d3d9e4
--- /dev/null
+++ b/TAO/tests/Big_Request_Muxing/Test.idl
@@ -0,0 +1,19 @@
+//
+// $Id$
+//
+
+module Test
+{
+ typedef sequence<octet> Payload;
+
+ interface Payload_Receiver
+ {
+ /// Send the data using a twoway operat
+ oneway void more_data (in Payload the_payload);
+
+ /// operation used with SYNC_NONE clients. This is separated to avoid
+ /// error reporting due to dropped messages. Drops are allowed in the
+ /// sync_none case.
+ oneway void sync_none_more_data (in Payload the_payload);
+ };
+};