Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / performance-tests / Sequence_Latency / Single_Threaded / Roundtrip.cpp
blob9866ceb0226bac09a0b2bc721269ed4ef937e0b6
1 #include "Roundtrip.h"
3 Roundtrip::Roundtrip (CORBA::ORB_ptr orb)
4 : orb_ (CORBA::ORB::_duplicate (orb))
8 Test::Timestamp
9 Roundtrip::test_octet_method (const Test::octet_load &,
10 Test::Timestamp send_time)
12 return send_time;
15 Test::Timestamp
16 Roundtrip::test_long_method (const Test::long_load &,
17 Test::Timestamp send_time)
19 return send_time;
22 Test::Timestamp
23 Roundtrip::test_char_method (const Test::char_load &,
24 Test::Timestamp send_time)
26 return send_time;
29 Test::Timestamp
30 Roundtrip::test_longlong_method (const Test::longlong_load &,
31 Test::Timestamp send_time)
33 return send_time;
36 Test::Timestamp
37 Roundtrip::test_double_method (const Test::double_load &,
38 Test::Timestamp send_time)
40 return send_time;
44 Test::Timestamp
45 Roundtrip::test_short_method (const Test::short_load &,
46 Test::Timestamp send_time)
48 return send_time;
51 void
52 Roundtrip::shutdown (void)
54 this->orb_->shutdown (0);