2 #include "tao/ORB_Core.h"
3 #include "tao/Transport_Cache_Manager.h"
4 #include "tao/Thread_Lane_Resources.h"
6 Hello::Hello (CORBA::ORB_ptr orb
)
7 : orb_ (CORBA::ORB::_duplicate (orb
))
12 Hello::get_string (void)
14 if (this->orb_
->orb_core ()->lane_resources ().transport_cache ().current_size () > 1)
17 "(%P|%t) The size is growing\n"));
20 return CORBA::string_dup ("Hello there!");
24 Hello::shutdown (void)
26 this->orb_
->shutdown (0);