Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / examples / AMH / Sink_Server / Test.idl
blobc7b4aebc549184b5197fc184d189bad82b0baa66
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 /// Let the Server know a new client is interested in joining the test
12 void start_test ();
14 /// Let the server know the client is done
15 void end_test ();
17 /// A simple method to measure roundtrip delays
18 /**
19 * The operation simply returns its argument, this is used in AMI
20 * and deferred synchronous tests to measure the roundtrip delay
21 * without the need for a different reply handler for each
22 * request.
24 Timestamp test_method (in Timestamp send_time);