00001 // $Id: CSD_TP_Collocated_Asynch_Request.cpp 76687 2007-01-29 19:18:13Z johnnyw $ 00002 00003 #include "tao/CSD_ThreadPool/CSD_TP_Collocated_Asynch_Request.h" 00004 00005 ACE_RCSID (CSD_ThreadPool, 00006 TP_Collocated_Asynch_Request, 00007 "$Id: CSD_TP_Collocated_Asynch_Request.cpp 76687 2007-01-29 19:18:13Z johnnyw $") 00008 00009 #if !defined (__ACE_INLINE__) 00010 # include "tao/CSD_ThreadPool/CSD_TP_Collocated_Asynch_Request.inl" 00011 #endif /* ! __ACE_INLINE__ */ 00012 00013 00014 TAO_BEGIN_VERSIONED_NAMESPACE_DECL 00015 00016 TAO::CSD::TP_Collocated_Asynch_Request::~TP_Collocated_Asynch_Request() 00017 { 00018 } 00019 00020 00021 void 00022 TAO::CSD::TP_Collocated_Asynch_Request::prepare_for_queue_i() 00023 { 00024 this->do_clone(); 00025 } 00026 00027 00028 void 00029 TAO::CSD::TP_Collocated_Asynch_Request::dispatch_i() 00030 { 00031 try 00032 { 00033 this->do_dispatch(); 00034 } 00035 catch (const ::CORBA::Exception&) 00036 { 00037 // Eat these. We probably should log these, but since we have already 00038 // unblocked the requesting thread there is no point in saving it or 00039 // doing anything with it. 00040 } 00041 catch (...) 00042 { 00043 // Eat these. We probably should log these, but since we have already 00044 // unblocked the requesting thread there is no point in saving it or 00045 // doing anything with it. 00046 } 00047 } 00048 00049 void 00050 TAO::CSD::TP_Collocated_Asynch_Request::cancel_i() 00051 { 00052 this->do_cancel(); 00053 } 00054 00055 TAO_END_VERSIONED_NAMESPACE_DECL