blob: 315afce5598513c15541676e026f7a9bb5b8f580 (
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
|
// $Id$
namespace Kokyu
{
ACE_INLINE
Dispatch_Deferrer_Attributes::Dispatch_Deferrer_Attributes()
{
}
ACE_INLINE
Dispatch_Deferrer::Dispatch_Deferrer()
: msg_strat_()
, rgq_(this->msg_strat_)
, timers_()
, react_()
, task_(0)
{
}
ACE_INLINE
Dispatch_Deferrer::~Dispatch_Deferrer()
{
this->react_.close();
this->timers_.close();
}
} //namespace Kokyu
|