summaryrefslogtreecommitdiff
path: root/TAO/tao/CSD_ThreadPool/CSD_TP_Custom_Synch_Request.cpp
blob: c2e358de401eeec27a012f1833471d7d51958bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// $Id$

#include "tao/CSD_ThreadPool/CSD_TP_Custom_Synch_Request.h"

#if !defined (__ACE_INLINE__)
# include "tao/CSD_ThreadPool/CSD_TP_Custom_Synch_Request.inl"
#endif /* ! __ACE_INLINE__ */

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

TAO::CSD::TP_Custom_Synch_Request::~TP_Custom_Synch_Request()
{
}


void
TAO::CSD::TP_Custom_Synch_Request::dispatch_i()
{
  this->execute_op();
  this->synch_helper_.dispatched();
}


void
TAO::CSD::TP_Custom_Synch_Request::cancel_i()
{
  this->cancel_op();
  this->synch_helper_.cancelled();
}

TAO_END_VERSIONED_NAMESPACE_DECL