blob: 0651d0b96d2c01a6dc14f0820643301be1505381 (
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
54
55
56
57
58
59
60
61
62
63
64
|
//=============================================================================
/**
* @file Object_B_i.cpp
*
* This class implements the Object B of the
* Nested Upcalls - Triangle test.
*
* @author Michael Kircher
*/
//=============================================================================
#include "tao/Exception.h"
#include "Object_B_i.h"
#include "ace/OS_NS_unistd.h"
// CTOR
Object_B_i::Object_B_i (void)
{
}
// DTOR
Object_B_i::~Object_B_i (void)
{
}
void
Object_B_i::foo (Object_A_ptr theObject_A_ptr)
{
try
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) BEGIN Object_B_i::foo: Trying to call Object A\n"));
theObject_A_ptr->finish ();
// Start to wait on this variable, it is set to true
// by the method finish ()
long int usecs = 500000;
ACE_Time_Value pause(0, usecs);
ACE_OS::sleep(pause);
}
catch (const CORBA::Exception& ex)
{
ex._tao_print_exception ("calling the initiator");
}
}
void
Object_B_i::shutdown (void)
{
int argc = 0;
ACE_TCHAR **argv = 0;
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv);
orb->shutdown ();
}
|