Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / performance-tests / LoadBalancing / LBPerf / CPU / Test.idl
blob02c41a39012811f27989ba6bd49d8b61ddcab3e3
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;
7 typedef long number;
9 /// Measure roundtrip delay
10 interface Roundtrip
12 /// A simple method to measure roundtrip delays
13 /**
14 * The operation simply returns its argument, this is used in AMI
15 * and deferred synchronous tests to measure the roundtrip delay
16 * without the need for a different reply handler for each
17 * request.
19 Timestamp test_method (in Timestamp send_time,
20 in number cl_number);
22 /// Shutdown the ORB
23 void shutdown ();