Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / examples / Notify / Lanes / ORB_Run_Task.cpp
blobd27314e6c6b35b3a998593ebcf5598d25ef2155b
1 #include "ORB_Run_Task.h"
5 TAO_Notify_ORB_Run_Task::TAO_Notify_ORB_Run_Task (TAO_Notify_ORB_Objects& orb_objects)
6 : orb_objects_ (orb_objects)
10 TAO_Notify_ORB_Run_Task::~TAO_Notify_ORB_Run_Task ()
14 int
15 TAO_Notify_ORB_Run_Task::svc (void)
17 try
19 this->orb_objects_.current_->the_priority (0);
21 this->orb_objects_.orb_->run ();
23 catch (const CORBA::Exception&)
27 return 0;