summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/Notify/Bug_2415_Regression/Notify_Push_Consumer.h
blob: 0599cf07acc842af8cabdd2447a3a809914d781e (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
/* -*- C++ -*- */
// $Id$
// ==========================================================================
//
// = LIBRARY
//   TAO/orbsvcs/tests/Notify/Discarding
//
// = FILENAME
//   Notify_Push_Consumer.h
//
// = DESCRIPTION
//   A push consumer implementation.
//
// = AUTHOR
//    Chad Elliott <elliott_c@ociweb.com>
//
// ==========================================================================
#ifndef TAO_NOTIFY_PUSH_CONSUMER_H
#define TAO_NOTIFY_PUSH_CONSUMER_H
#include "Notify_StructuredPushConsumer.h"

class Notify_Test_Client;

class Notify_Push_Consumer: public TAO_Notify_Tests_StructuredPushConsumer
{
public:
  Notify_Push_Consumer (Notify_Test_Client& client);
  void _connect (CosNotifyChannelAdmin::ConsumerAdmin_ptr consumer_admin,
    CosNotifyFilter::Filter_ptr filter);

  int messages_received();

protected:
  void push_structured_event (const CosNotification::StructuredEvent&);

  Notify_Test_Client& client_;
  int messages_received_;
};

#endif /* TAO_NOTIFY_PUSH_CONSUMER_H */