summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
index d380adb9d98..8664fec1a3c 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching.cpp
@@ -30,21 +30,19 @@ TAO_EC_Reactive_Dispatching::shutdown (void)
}
void
-TAO_EC_Reactive_Dispatching::push (TAO_EC_ProxyPushSupplier*,
- RtecEventComm::PushConsumer_ptr consumer,
+TAO_EC_Reactive_Dispatching::push (TAO_EC_ProxyPushSupplier* proxy,
const RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info,
CORBA::Environment& ACE_TRY_ENV)
{
- consumer->push (event, ACE_TRY_ENV);
+ proxy->push_to_consumer (event, ACE_TRY_ENV);
}
void
TAO_EC_Reactive_Dispatching::push_nocopy (TAO_EC_ProxyPushSupplier* proxy,
- RtecEventComm::PushConsumer_ptr consumer,
RtecEventComm::EventSet& event,
TAO_EC_QOS_Info& qos_info,
CORBA::Environment& ACE_TRY_ENV)
{
- consumer->push (event, ACE_TRY_ENV);
+ proxy->push_to_consumer (event, ACE_TRY_ENV);
}