2 /// A simple module to avoid namespace pollution
6 exception InvalidTimestamp
{};
7 exception ServerOverload
{};
9 /// Use a timestamp to measure the roundtrip delay
10 typedef unsigned long long Timestamp
;
14 Timestamp test_method
(in Timestamp send_time
)
15 raises
(InvalidTimestamp
, ServerOverload
);
18 /// Measure roundtrip Delay
21 Timestamp test_method
(in Timestamp send_time
)
22 raises
(InvalidTimestamp
, ServerOverload
);
24 oneway
void shutdown
();