summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/FaultTolerance/Replay_Reply/test_i.cpp
blob: 6423e5489fbce9216edebff3840a263a0bd62a69 (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
// -*- C++ -*-
#include "test_i.h"

ACE_RCSID (ForwardRequest,
           test_i,
           "$Id$")

test_i::test_i (CORBA::ORB_ptr orb)
  : number_ (0)
  , orb_ (CORBA::ORB::_duplicate (orb))
{
}

test_i::~test_i (void)
{
}

CORBA::Short
test_i::number (char *&str
                ACE_ENV_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  CORBA::string_free (str);

  str = CORBA::string_dup ("Testing_Replay_Reply");

  return ++this->number_;
}

void
test_i::shutdown (ACE_ENV_SINGLE_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  ACE_DEBUG ((LM_DEBUG,
              "Server is shutting down via object %d.\n",
              this->number_));

  this->orb_->shutdown (0 ACE_ENV_ARG_PARAMETER);
}