summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Throughput/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Throughput/Test.idl')
-rw-r--r--TAO/performance-tests/Throughput/Test.idl33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/performance-tests/Throughput/Test.idl b/TAO/performance-tests/Throughput/Test.idl
deleted file mode 100644
index 08e67ceed46..00000000000
--- a/TAO/performance-tests/Throughput/Test.idl
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// $Id$
-//
-
-module Test
-{
- /// The data payload
- typedef sequence<octet> Payload;
- struct Message {
- unsigned long message_id;
- Payload the_payload;
- };
-
- /// Implement a simple interface to receive a lot of data
- interface Receiver
- {
- /// Receive a big payload
- oneway void receive_data (in Message the_message);
-
- /// All the data has been sent, print out performance data
- void done ();
- };
-
- /// Implement a factory to create Receivers
- interface Receiver_Factory
- {
- /// Create a new receiver
- Receiver create_receiver ();
-
- /// Shutdown the application
- oneway void shutdown ();
- };
-};