summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/Notify/lib/Relay_Consumer.h
blob: 5fcbb0131020c207fec7a361b22a99542ed3fa41 (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
46
47
48
49
50
51
52
53
54
/* -*- C++ -*- */
/**
 *  @file Relay_Consumer.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 *
 *
 */

#ifndef TAO_Notify_Tests_RELAY_CONSUMER_H
#define TAO_Notify_Tests_RELAY_CONSUMER_H
#include /**/ "ace/pre.h"

#include "notify_test_export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "Direct_Consumer.h"

/**
 * @class TAO_Notify_Tests_Relay_Consumer
 *
 * @brief Relay events to a destination consumer.
 *
 */
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Relay_Consumer : public TAO_Notify_Tests_Direct_Consumer
{
public:
  /// Constuctor
  TAO_Notify_Tests_Relay_Consumer (ACE_CString& destination);

  /// Destructor
  ~TAO_Notify_Tests_Relay_Consumer ();

  /// Connect using options parsed and set initial QoS.
  virtual void connect (void);

  void push_structured_event (const CosNotification::StructuredEvent &/*notification*/
                              );

protected:
  /// Destination object.
  ACE_CString destination_;

  /// This object is resolved in the connect method.
  CosNotifyComm::StructuredPushConsumer_var destination_object_;
};

#include /**/ "ace/post.h"
#endif /* TAO_Notify_Tests_RELAY_CONSUMER_H */