summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Properties.inl')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Properties.inl24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Properties.inl b/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
index c53e7087f8e..e48c65afbed 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
+++ b/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
@@ -34,12 +34,24 @@ TAO_Notify_Properties::orb (void)
return CORBA::ORB::_duplicate (orb_.in ());
}
+ACE_INLINE CORBA::ORB_ptr
+TAO_Notify_Properties::dispatching_orb (void)
+{
+ return CORBA::ORB::_duplicate (dispatching_orb_.in ());
+}
+
ACE_INLINE void
TAO_Notify_Properties::orb (CORBA::ORB_ptr orb)
{
orb_ = CORBA::ORB::_duplicate (orb);
}
+ACE_INLINE void
+TAO_Notify_Properties::dispatching_orb (CORBA::ORB_ptr dispatching_orb)
+{
+ dispatching_orb_ = CORBA::ORB::_duplicate (dispatching_orb);
+}
+
ACE_INLINE PortableServer::POA_ptr
TAO_Notify_Properties::default_poa (void)
{
@@ -76,6 +88,18 @@ TAO_Notify_Properties::allow_reconnect (bool b)
this->allow_reconnect_ = b;
}
+ACE_INLINE bool
+TAO_Notify_Properties::separate_dispatching_orb (void)
+{
+ return this->separate_dispatching_orb_;
+}
+
+ACE_INLINE void
+TAO_Notify_Properties::separate_dispatching_orb (bool b)
+{
+ this->separate_dispatching_orb_ = b;
+}
+
ACE_INLINE CORBA::Boolean
TAO_Notify_Properties::updates (void)
{