Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / CSD_ThreadPool / CSD_TP_Remote_Request.cpp
blob2d9004d3f37dd77d40b3a477e5e97e65426f29c4
1 #include "tao/CSD_ThreadPool/CSD_TP_Remote_Request.h"
3 #if !defined (__ACE_INLINE__)
4 # include "tao/CSD_ThreadPool/CSD_TP_Remote_Request.inl"
5 #endif /* ! __ACE_INLINE__ */
7 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
9 TAO::CSD::TP_Remote_Request::~TP_Remote_Request()
13 void
14 TAO::CSD::TP_Remote_Request::prepare_for_queue_i()
16 this->do_clone();
20 void
21 TAO::CSD::TP_Remote_Request::dispatch_i()
23 try
25 this->do_dispatch();
27 catch (const ::CORBA::Exception&)
29 // Eat these. We probably should log these, but since we have already
30 // unblocked the requesting thread there is no point in saving it or
31 // doing anything with it.
33 catch (...)
35 // Eat these. We probably should log these, but since we have already
36 // unblocked the requesting thread there is no point in saving it or
37 // doing anything with it.
42 void
43 TAO::CSD::TP_Remote_Request::cancel_i()
45 this->do_cancel();
48 TAO_END_VERSIONED_NAMESPACE_DECL