Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / CSD_ThreadPool / CSD_TP_Custom_Asynch_Request.cpp
bloba073fb6f10237f0312c9aaafe939a6d8005b3a22
1 #include "tao/CSD_ThreadPool/CSD_TP_Custom_Asynch_Request.h"
3 #if !defined (__ACE_INLINE__)
4 # include "tao/CSD_ThreadPool/CSD_TP_Custom_Asynch_Request.inl"
5 #endif /* ! __ACE_INLINE__ */
7 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
9 TAO::CSD::TP_Custom_Asynch_Request::~TP_Custom_Asynch_Request()
14 void
15 TAO::CSD::TP_Custom_Asynch_Request::dispatch_i()
17 try
19 this->execute_op();
21 catch (const ::CORBA::Exception&)
23 // Eat these. We probably should log these, but since we have already
24 // unblocked the requesting thread there is no point in saving it or
25 // doing anything with it.
27 catch (...)
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.
35 void
36 TAO::CSD::TP_Custom_Asynch_Request::cancel_i()
38 this->cancel_op();
41 TAO_END_VERSIONED_NAMESPACE_DECL