Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / AMH_Exceptions / Test.idl
blob9a206f87b2acefd734442e6ba83b66948b053c42
2 /// A simple module to avoid namespace pollution
3 module Test
6 exception InvalidTimestamp {};
7 exception ServerOverload {};
9 /// Use a timestamp to measure the roundtrip delay
10 typedef unsigned long long Timestamp;
12 valuetype Red_Herring
14 Timestamp test_method (in Timestamp send_time)
15 raises (InvalidTimestamp, ServerOverload);
18 /// Measure roundtrip Delay
19 interface Roundtrip
21 Timestamp test_method (in Timestamp send_time)
22 raises (InvalidTimestamp, ServerOverload);
24 oneway void shutdown ();