summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
index 72694d63538..55a36426f62 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Event_Channel.cpp
@@ -24,9 +24,7 @@ TAO_EC_Event_Channel (const TAO_EC_Event_Channel_Attributes& attr,
factory_ (factory),
own_factory_ (own_factory),
consumer_reconnect_ (attr.consumer_reconnect),
- supplier_reconnect_ (attr.supplier_reconnect),
- busy_hwm_ (attr.busy_hwm),
- max_write_delay_ (attr.max_write_delay)
+ supplier_reconnect_ (attr.supplier_reconnect)
{
if (this->factory_ == 0)
{
@@ -62,6 +60,10 @@ TAO_EC_Event_Channel (const TAO_EC_Event_Channel_Attributes& attr,
this->scheduling_strategy_ =
this->factory_->create_scheduling_strategy (this);
+
+ this->consumer_admin_->busy_hwm (attr.consumer_admin_busy_hwm);
+ this->consumer_admin_->max_write_delay (attr.consumer_admin_max_write_delay);
+
}
TAO_EC_Event_Channel::~TAO_EC_Event_Channel (void)