summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Direct_Consumer.h
blob: aedcf83e89a1ecec687d9e4f688bd2b70f992807 (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
/* -*- C++ -*- */
/**
 *  @file Direct_Consumer.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 *
 *
 */

#ifndef TAO_Notify_Tests_DIRECT_CONSUMER_H
#define TAO_Notify_Tests_DIRECT_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 "Periodic_Consumer.h"

/**
 * @class TAO_Notify_Tests_Direct_Consumer
 *
 * @brief Does not connect to the Notification Service. The Direct Supplier supplies events directly.
 *
 */
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Direct_Consumer : public TAO_Notify_Tests_Periodic_Consumer
{
public:
  /// Constuctor
  TAO_Notify_Tests_Direct_Consumer (void);

  /// Destructor
  ~TAO_Notify_Tests_Direct_Consumer ();

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

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