blob: 5b21ce7dc82174c7d6e98f655670cb44b65a366b (
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
65
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/NestedUpCalls/Triangle_Test
//
// = FILENAME
// Object_B_i.cpp
//
// = DESCRIPTION
// This class implements the Object B of the
// Nested Upcalls - Triangle test.
//
// = AUTHORS
// Michael Kircher
//
// ============================================================================
#include "tao/Exception.h"
#include "Object_B_i.h"
#include "ace/OS_NS_unistd.h"
ACE_RCSID(Triangle_Test, Object_B_i, "$Id$")
// 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
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_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);
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "calling the initiator");
}
ACE_ENDTRY;
}
|