blob: 31888a61dc89f839570d182c6b43c20c64c701ff (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// $Id$
#include "server_i.h"
server_i::server_i (int quiet,
CORBA::ORB_ptr orb)
: quiet_ (quiet),
orb_ (CORBA::ORB::_duplicate (orb))
{
}
void
server_i::start (client_ptr c,
CORBA::UShort time_to_live,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->client_ = client::_duplicate (c);
this->ping (time_to_live,
ACE_TRY_ENV);
ACE_CHECK;
return;
}
void
server_i::ping (CORBA::UShort time_to_live,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException))
{
if (!this->quiet_)
ACE_DEBUG ((LM_DEBUG,
"(%t) server_i::ping -> time to live = %d\n",
time_to_live));
--time_to_live;
if (time_to_live > 0)
{
this->client_->ping (time_to_live,
ACE_TRY_ENV);
ACE_CHECK;
}
}
void
server_i::shutdown (CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown (0,
ACE_TRY_ENV);
ACE_CHECK;
}
|