Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / Latency / Thread_Pool / Test.idl
blobe56a95cd949720a89e86f021a78152b7cd6e7b36
2 /// A simple module to avoid namespace pollution
3 module Test
5 /// Use a timestamp to measure the roundtrip delay
6 typedef unsigned long long Timestamp;
8 /// Measure roundtrip delay
9 interface Roundtrip
11 /// A simple method to measure roundtrip delays
12 /**
13 * The operation simply returns its argument, this is used in AMI
14 * and deferred synchronous tests to measure the roundtrip delay
15 * without the need for a different reply handler for each
16 * request.
18 Timestamp test_method (in Timestamp send_time);
20 /// Shutdown the ORB
21 void shutdown ();