summaryrefslogtreecommitdiff
path: root/TAO/tao/CSD_ThreadPool/CSD_TP_Custom_Synch_Request.cpp
blob: dc4c891fe5ea6df66e4797bed3f8ae60649caf5f (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
#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