summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl')
-rw-r--r--trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl b/trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl
new file mode 100644
index 00000000000..f20041016a0
--- /dev/null
+++ b/trunk/TAO/orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/Test.idl
@@ -0,0 +1,28 @@
+//
+// $Id$
+//
+
+/// A simple module to avoid namespace pollution
+module Test
+{
+ /// Use a timestamp to measure the roundtrip delay
+ typedef unsigned long long Timestamp;
+ typedef long number;
+
+ /// Measure roundtrip delay
+ interface Roundtrip
+ {
+ /// A simple method to measure roundtrip delays
+ /**
+ * The operation simply returns its argument, this is used in AMI
+ * and deferred synchronous tests to measure the roundtrip delay
+ * without the need for a different reply handler for each
+ * request.
+ */
+ Timestamp test_method (in Timestamp send_time,
+ in number cl_number);
+
+ /// Shutdown the ORB
+ void shutdown ();
+ };
+};