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.inl37
1 files changed, 37 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Properties.inl b/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
index 765da34238d..62fb4db7e6b 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
+++ b/TAO/orbsvcs/orbsvcs/Notify/Properties.inl
@@ -89,6 +89,43 @@ TAO_Notify_Properties::allow_reconnect (bool b)
}
ACE_INLINE bool
+TAO_Notify_Properties::validate_client (void)
+{
+ return this->validate_client_;
+}
+
+ACE_INLINE void
+TAO_Notify_Properties::validate_client (bool b)
+{
+ this->validate_client_ = b;
+}
+
+ACE_INLINE ACE_Time_Value
+TAO_Notify_Properties::validate_client_delay (void)
+{
+ return this->validate_client_delay_;
+}
+
+ACE_INLINE void
+TAO_Notify_Properties::validate_client_delay (ACE_Time_Value b)
+{
+ this->validate_client_delay_ = b;
+}
+
+ACE_INLINE ACE_Time_Value
+TAO_Notify_Properties::validate_client_interval (void)
+{
+ return this->validate_client_interval_;
+}
+
+ACE_INLINE void
+TAO_Notify_Properties::validate_client_interval (ACE_Time_Value b)
+{
+ this->validate_client_interval_ = b;
+}
+
+
+ACE_INLINE bool
TAO_Notify_Properties::separate_dispatching_orb (void)
{
return this->separate_dispatching_orb_;