summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/EC_Reactive_Dispatching.cpp
blob: f8e5e78df3aadd6de4de528560592f6f7328cc55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// $Id$

#include "EC_Reactive_Dispatching.h"
#include "EC_ProxySupplier.h"

#if ! defined (__ACE_INLINE__)
#include "EC_Reactive_Dispatching.i"
#endif /* __ACE_INLINE__ */

ACE_RCSID(Event, EC_Reactive_Dispatching, "$Id$")

TAO_EC_Reactive_Dispatching::TAO_EC_Reactive_Dispatching (void)
  : TAO_EC_Dispatching ()
{
}

void
TAO_EC_Reactive_Dispatching::activate (void)
{
}

void
TAO_EC_Reactive_Dispatching::shutdown (void)
{
}

void
TAO_EC_Reactive_Dispatching::push (TAO_EC_ProxyPushSupplier* proxy,
                                   RtecEventComm::PushConsumer_ptr consumer,
                                   const RtecEventComm::EventSet& event,
                                   TAO_EC_QOS_Info&
                                   ACE_ENV_ARG_DECL)
{
  proxy->reactive_push_to_consumer (consumer, event ACE_ENV_ARG_PARAMETER);
}

void
TAO_EC_Reactive_Dispatching::push_nocopy (TAO_EC_ProxyPushSupplier* proxy,
                                          RtecEventComm::PushConsumer_ptr consumer,
                                          RtecEventComm::EventSet& event,
                                          TAO_EC_QOS_Info&
                                          ACE_ENV_ARG_DECL)
{
  proxy->reactive_push_to_consumer (consumer, event ACE_ENV_ARG_PARAMETER);
}