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
|
//
// $Id$
//
#include "Peer.h"
#include "Session.h"
Peer::Peer (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
Peer::~Peer (void)
{
}
Test::Session_ptr
Peer::create_session (Test::Session_Control_ptr control,
CORBA::ULong payload_size,
CORBA::ULong thread_count,
CORBA::ULong message_count,
CORBA::ULong peer_count)
{
Session *session_impl = 0;
ACE_NEW_THROW_EX (session_impl,
Session (control,
payload_size,
thread_count,
message_count,
peer_count),
CORBA::NO_MEMORY ());
PortableServer::ServantBase_var transfer_ownership (session_impl);
return session_impl->_this ();
}
void
Peer::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) Peer::shutdown, waiting for threads\n"));
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) Peer::shutdown, shutting down ORB\n"));
this->orb_->shutdown (0);
}
|