summaryrefslogtreecommitdiff
path: root/TAO/examples/PluggableUDP/tests/Performance/UDP.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/PluggableUDP/tests/Performance/UDP.idl')
-rw-r--r--TAO/examples/PluggableUDP/tests/Performance/UDP.idl29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/examples/PluggableUDP/tests/Performance/UDP.idl b/TAO/examples/PluggableUDP/tests/Performance/UDP.idl
new file mode 100644
index 00000000000..e99e330b09f
--- /dev/null
+++ b/TAO/examples/PluggableUDP/tests/Performance/UDP.idl
@@ -0,0 +1,29 @@
+/* -*- C++ -*- */
+// $Id$
+
+interface UDP
+{
+ // = TITLE
+ // Defines an interface that encapsulates operations that
+ // return the current time of day and shuts down the server.
+
+ struct LongStruct
+ {
+ long x;
+ string str;
+ };
+
+ typedef sequence<LongStruct> LongSeq;
+
+ oneway void setResponseHandler (in UDP udpHandler);
+
+ oneway void reset (in string client_name);
+
+ oneway void invoke (in string client_name,
+ in long request_id);
+
+ oneway void shutdown ();
+ // Shutdown the application.
+};
+
+